HTML List OL Code


Ordered List (HTML Numbered List)

    The <ol></ol> tags create an ordered list of items. Each item is preceded by a number or letter. This can also be called an HTML numbered list.

Syntax


<OL type=shape start=xx>
  list-items
</OL>
Modifiers
TYPE=number-system
The type is the style of numbering system you want. Options are: A, a, 1, I or i.
START=number
The number you want to start with, possibly for continuing a previous list in a second column.

<