ORDERED LIST TAG: <OL>

The ordered list tag is typically used to present a numbered list of items sorted in numerical order. This tag must be immediately followed by one or more <LI> tags.

The following attributes are supported:

TYPE=x:
This attribute defines how the list will be ordered. Values for x control the numbering of the list. x may be one of:
  • A Capital letters
  • a Lower case letters
  • I Capital roman numerals
  • i Lower case roman numerals
  • 1 Numbers
  • START=n:
    This attribute represents the base vale from which to start the numbering, and is always a number
    COMPACT:
    This suggests that a compact rendering should be used to display the list
    For instance:
    <OL TYPE=I START=5>
    <LI>First Item
    <LI>Second Item
    </OL>
    would be displayed as:
    1. First Item
    2. Second Item