The Ordered List Tag

ken's picture

Opening tag : <OL>
Closing tag: </OL>

Purpose:
The OL tag stands for ordered list, and is use in with LI tags to manage lists. It is similar to UL (unordered list).

Attributes:
COMPACT
- Compress the space taken by the list.

CONTINUE
- Continue numbering from a previous list.

Start=#
- Specify the number to start counting from.

Type=value
- The type of bullet. The value can be specified as follows;
A - Uppercase lettered list.
a - Lowercase lettered list.
I - Uppercase roman numerals.
i - Lowercase roman numerals.
1 - Numbered list.

Example:

<OL>
<LI>First Element in the List</LI>
<LI>Second Element in the List</LI>
</OL>

Related Tags:

<LI></LI> - List Item Tag.
<UL></UL> - Unordered List Tag.

Back to:
Alphabetical Guide
Guide By Type