The Unordered List Tag

ken's picture

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:

<LI></LI> - List Item Tag.
<OL></OL> - Ordered List Tag.

Back to:
Alphabetical Guide
Guide By Type