Category: Lists | Previous: UL | Next: LI

<OL>

Description:

An ordered list. The ol element encloses an ordered or numbered list.

Syntax:

<OL TYPE="I" START="1"> ... </OL>

Attributes:

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.

Notes:

Example:

<OL TYPE="I">
<LI> Item 1
<LI> Item 2

</OL>
<OL TYPE="a" START="3">
<LI> Item 1
<LI> Item 2

</OL>


  1. Item 1
  2. Item 2
  1. Item 1
  2. Item 2

Index: HTML Reference | Previous: NOSCRIPT | Next: OPTION