List Type:
- Item
- Item
- Item
<head>
<style>
ol{
list-style:decimal;
}
</style>
</head>
<body>
<ol>
<li>Item</li>
<li>Item</li>
<li>Item</li>
</ol>
</body>
<ol> <li>Get Toothbrush</li> <li>Put toothpaste on brush</li> <li>Brush Teeth</li> <li>Rinse</li> </ol>
<ul> <li>Mow the lawn</li> <li>Do the dishes</li> <li>Feed the dog</li> </ul>
<head>
<style>
ol{
list-style:decimal;
}
</style>
</head>
<body>
<ol>
<li>Item</li>
<li>Item</li>
<li>Item</li>
</ol>
</body>
<head>
<style>
ol { list-style:upper-roman }
ol ol { list-style:upper-alpha }
ol ol ol {list-style:decimal }
</style>
</head>
<body>
<ol>
<li>Main Topic 1</li>
<ol>
<li>Sub-Topic 1</li>
<li>Sub-Topic 2</li>
<ol>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ol>
</ol>
<li>Main Topic 2</li>
<li>Main Topic 3</li>
</ol>
</body>