<html>
<head>
<title>CodeAve.com(Text: Ordered Lists)</title>
</head>
<body bgcolor="#FFFFFF">
<ol>
<li>the first list item</li>
<li>the second list item</li>
<li>the third list item</li>
</ol>
<!-- Ordered lists begin and end with <ol>
</ol> tags.
Each list item must be enclosed by <li> </li> tags -->
<p>
<ol>
<li>the first list item</li>
<li>the second list item</li>
<ol>
<li>the first sub item</li>
<li>the second sub item</li>
<li>the third sub item</li>
</ol>
<li>the third list item</li>
</ol>
</body>
</html>
|