NOTICE: This website is no longer updated or supported - as such many of the techniques used to build it may seem antiquated in the modern day. It is preserved for historical reasons only.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head>
<title>Unordered List Example</title>
</head>
<body>

<ul>
<li>Unordered lists
<ul>
<li>can be nested.
<ul>
<li>Bullet changes on nesting.</li>
</ul>
</li>
</ul>
</li>
</ul>

<p>Bullets can be controlled with the <b>type</b> attribute. <b>Type</b>
can be set for the list as a whole or item by item.</p>

<ul type="square">
<li>First item bullet shape set by ul</li>
<li type="disc">Disc item</li>
<li type="circle">Circle item</li>
<li type="square">Square item</li>
</ul>

</body>
</html>

CLOSE WINDOW | VIEW RENDERED PAGE