<OL><LI> This is item number 1.
<LI> This is item number 2.
</OL>
The OL and LI tags are used to create ordered lists. Ordered simply means
there is a numbering scheme involved. You must close all <OL> tags
with a </OL>.
The OL tag allows the following options:
TYPE=I use capital Roman numerals
TYPE=A use capital letters
TYPE=a use lowercase letters
TYPE=i use lowercase Roman numerals
TYPE=1 use numeric character
You can also do this:
TYPE=I START=1 start with capital Roman numeral I
TYPE=A START=2 start with capital letter B
TYPE=a START=4 start with lowercase letter d
TYPE=i START=6 start with lowercase roman number vi