An ordered list. The ol element encloses an ordered or numbered list.
<OL TYPE="I" START="1"> ... </OL>
| Attribute | Value | Description |
|---|---|---|
TYPE |
I, i, A, a, 1 |
Sets the numbering style for the list. |
START |
INTEGER |
Sets the starting number of the list. |
<OL TYPE="I">
<LI> Item 1
<LI> Item 2
</OL>
<OL TYPE="a" START="3">
<LI> Item 1
<LI> Item 2
</OL>