Ordered Lists
Default ordered list
<ol>
<li>Item One</li>
<li>Item Two</li>
<li>Item Three</li>
</ol>
<li>Item One</li>
<li>Item Two</li>
<li>Item Three</li>
</ol>
The <ol> tag starts an ordered list, and every item in the list must be enclosed in <li> tags. If the type attribute is not specified, the list items will be numbered.
The type attribute
The <ol> tag can have the attribute type set.
<ol type="1 / A / a / I / i"> </ol>
1 - The list items will be numbered.
A - The list items will be labelled alphabetically, in capital letters.
a - The list items will be labelled alphabetically, in lowercase letters.
I - The list items will be labelled with roman numerals, in capital letters.
i - The list items will be labelled with roman numerals, in lowercase letters.


