OL
"OL" stands for 'Ordered List'. The list information between the opening and closing statements of the OL tag is presented as an ordered list . That is, numbers or letters will be used to indicate the logical sequence of each line. The LI tag is used within the OL tags to define individual lines of the ordered list. For example:
WalkTheGeek was created to:<OL STYLE="i"> <LI>Enlighten <LI>Educate <LI>Enhance </OL>
OL Attributes:
CLASS=" ... "
This attribute indicates the style 'class' applicable to the tag to which it has been assigned, the style 'class' being a function of a style sheet. For example, assume the style class 'relaxed' includes text with a font size of 8, and the style class 'active' includes text with a font size of 12. Using the CLASS="relaxed" attribute with a tag will cause the text within that tag to be displayed with a font size of 8. Using the CLASS="active" attribute with a tag will cause the text within that tag to be displayed with a font size of 12.
COMPACT
This attribute will cause the order list to be appear in a compacted form, if supported by the browser.
ID="n"
The ID attribute is used to assign a unique ID selector (identification) to the tag in which it is invoked. A style may be assigned to that ID, which will effect only that one instance of the attribute.
START=" ... "
This attribute is used to define the value at which the order list should start. For example, you may want to break up a lengthy list between two pages for readability. You would use this attribute to start the second list at the value at which the first was left off.
STYLE=" ... "
Used to specify which style sheet commands to apply to the instance of the STYLE attribute invoked within the tag.
TITLE=" ... "
The TITLE attribute is used to display a note or information in a popup window pertaining to the object to which it was assigned. The popup window is invoked by holding the mouse pointer over the object.
TYPE=" ... "
This attribute defines the numbering style for the ordered list. Use '1' for Arabic numbers, 'i' for lower case Roman Numerals, 'I' for upper case Roman Numerals, 'a' for lower case letters, and 'A' for upper case letters.
This tag also accepts the following Event Handlers:

onClick
onDblClick
onDragStart
onHelp
onMouseDown
onMouseUp
onMouseOver
onMouseMove
onMouseOut
onKeyPress
onKeyDown
onKeyUp
onSelectStart