The List Tag

ken's picture

Opening tag : <LI>
Closing tag: </LI>

Purpose:
The LI tags are used to manage lists. It is used in conjunction with either UL (unordered list) or OL (ordered list).

Attributes:
Skip=#
- Indicates how many numbers to skip through when using a numbered list.

SRC=URL
- Specifies the location of a graphical image to be used as the bullet character.

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.

Value=#
- Indicates the number to start counting from.

Example:

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

Related Tags:

Opening tag : <UL>
Closing tag: </UL>

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

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

PLAIN
- Don't use any bullet.

SRC=URL
- Specifies the location of a graphical image to be used as the bullet character.

Type=value
- The type of bullet. The value could be DISC, CIRCLE or SQUARE.

Wrap=value
- Multiple columns can be wrapped either HORIZ or VERT.

Example:

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

Related Tags:

<OL></OL> - Ordered List Tag.
<UL></UL> - Unordered List Tag.

Back to:
Alphabetical Guide
Guide By Type

Back to:
Alphabetical Guide
Guide By Type