contents.gifindex.gifprev1.gifnext1.gif

pueblo00000000.gif <ul>...</ul>

The Unordered List element is used to present a list of items, typically marked by bullets. An ordered list must begin with the <ul> element which is immediately followed by a <li> (list item) element.

An <ul> element is rendered with a slight extra left indent and each list item is marked by a bullet.

Attributes

TYPE

The TYPE attribute may be used on the <li> tag to specify how list items should be marked. The following values are supported:

type=disc Places a round bullet by the list item.

type=circle Same as type=disc.

type=square Places a square bullet by the list item.

Examples

The following example creates an unordered list with square bullets:

<ul type=square>

<li>Flour

<li>Salt

<li>Yeast

<li>Water

</ul>

Also see

<li>

<ol>