previous | start | next

OL

<OL
CLASS=type
COMPACT
ID=value
START=n
STYLE=css1 properties
TYPE=order-type>

Specifies that the following lines of text contain individual items that begin with an LI tag. These items are numbered.

CLASS=type
Indicates the class to which the element belongs.
COMPACT
Reduces the spacing between items in the list.
ID=value
Specifies a unique value for the element over the document.
START=n
Specifies a starting number for the list.
STYLE=css1 properties
Specifies style information.
TYPE=order-type
Changes the style of the list. The order-type can be one of these values:
A Use large letters.
a Use small letters.
I Use large Roman numerals.
i Use small Roman numerals.
1 Use numbers.

Example

<OL>
<LI>This is the first item in the list.
<LI>And this is the second item in the list.
</OL> 

<OL START=3>
<LI>This is item number 3.
</OL> 

<OL TYPE=A>
<LI>This is item A.
</OL> 


previous | start | next