HTML Tag and Attribute Reference
<OBJECT>
<OBJECT> . . . </OBJECT>
<OL>
Ordered List
<OL>
list entries
</OL>
<OL COMPACT>
list entries
</OL>
<OL SEQNUM=
number
>
list entries
</OL>
<OL CONTINUE>
list entries
</OL>
<OL START=
number
>
list entries
</OL>
<OL TYPE=
type
>
list entries
</OL>
The ordered list tag introduces an ordered (numbered) list, which is made up of List Item (
LI
) tags. The
COMPACT
attribute instructs the browser to reduce the space occupied by the list. For a bulleted list use
UL
. For a list without bullets or numbers use
MENU
. For a list without bullets or numbers made up of short items that can be arranged into columns use
DIR
.
A list heading (
LH
) may be included before the first list item. The
SEQNUM
attribute allows the first list item to be number instead of the default 1. The
CONTINUE
attribute continues the numbering from the previous ordered list. The
START
attribute allows the first list item to be number instead of the default 1. The
TYPE
attribute governs the way items are numbered:
A
A, B, C...
a
a, b, c...
I
I, II, III...
i
i, ii, iii...
1
1, 2, 3...
<OPTGROUP>
<OPTGROUP> . . . </OPTGROUP>
<OPTION>
<OPTION> . . . </OPTION>