HTML Ordered List
The HTML Ordered List tool generates the code necessary to create an HTML ordered list using the <ol> tag. The following options are available via the tool:
Number of Items: This determines the number of <li> tags, or list items in the list.
Numbering Style: This determines the numbering style of the list. Options include the default
numbering style, "1,2,3", "a,b,c", "A,B,C", "i,ii,iii", and "I,II,III".
The following is an example of the output generated by the HTML ordered list
tool:
<ol type="1">
<li></li>
<li></li>
<li></li>
</ol>