Unordered lists are used when the items to be listed have no particular sequence. An example might be a shopping list.
The unordered list is the same as a bulleted list. Just as a bulleted list in other programs, HTML provides several styles of bullets which may be used. The default bullet is a large solid dot, called a disc.
To open an unordered list type<UL>. Each item in the list (list item), must be preceded with a<LI>tag. When you have finished the list, close the list with a</UL>closing tag.
| The Code | The Result |
|---|---|
<UL>
|
|
A similar list as above using default second and third level bullets.
(maximum three level styles)
FORCING the BULLET to a specific Type, "disc", "circle" and "square"