Ordered Lists

Ordered lists are created between the <ol> and </ol> tags, and creates a numbered list. Each list item must be enclosed between <li> and </li> tags. An example of an ordered list would be:

<ol>
<li>First list item</li>
<li>Second list item</li>
<li>Third list item</li>
</ol>
  1. First list item
  2. Second list item
  3. Third list item