Unordered Lists

Unordered lists take the form:

    <UL>
	  <LI> ... first list item
	  <LI> ... second list item
	  ...
	</UL>

The UL element is used for unordered lists. Both start and end tags are always needed. The LI element is used for individual list items. The end tag for LI elements can always be omitted. Note that LI elements can contain nested lists. The COMPACT attribute can be used as a hint to the user agent to render lists in a more compact style.

The TYPE attribute can be used to set the bullet style on UL and LI elements. The permitted values are "disc", "square" or "circle". The default generally depends on the level of nesting for lists.

This list was chosen to cater for the original bullet shapes used by Mosaic in 1993.