Name
Unordered List
Description
Defines an unordered (bulleted) list. There are three different types
of bullet - filled circle (disc), filled square and unfilled circle. Multiple LI
(list items) tags are contained within this tag to define each item in the list.
UL tags can be nested to create sub lists.
Attributes
TYPE
This can be set to the following to change the type of list:
| Value |
| circle |
| disc (default) |
| square |
When lists are
nested, the type will change automatically.
Related Tags
The LI tag is used within the UL this tag. The OL
(ordered list) tag can be used to create numbered lists instead.
Example
Code
<p>States:</p>
<ul>
<li>New York</li>
<li>Iowa</li>
<li>Massachusetts</li>
<li>...</li>
</ul>
Generates
States:
- New York
- Iowa
- Massachusetts
- ...
© Martin Allen 1999 - 2006. Last updated Friday 24 November 2006 07:18:39 PM -0000.
|