Lesson 3: List Tags
(Ordered List Example)

The ordered list tag "<ol>" has a "start" attribute so you can begin your list at a designated point. Note that the "start" attribute only recognizes instructions in the form of integers.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Welcome to HTML</title>
</head>

<body bgcolor="#bdbdbd" text="black">
<br />
<h2>Directions for a WetNap<sub>&reg;</sub></h2>
<ol type="A" start="3">
<li>Tear open packet</li>
<li>Unfold</li>
<li>Use</li>
</ol>
</body>
</html>