Skip to Main Content or Page Contents
Unordered Lists <ul>
Unordered Lists used for Navigation
Ordered Lists <ol>
Description Lists <dl>
Tag Description
<ul> Defines an unordered list
<ol> Defines an ordered list
<li> Defines a list item
<dl> Defines a description list
<dt> Defines the term in a description list
<dd> Describes the term in a description list
<ul class="normal">
<li>List Item 1</li>
<li>List Item 2
<ul>
<li>nested List Item 2a
<ul>
<li>double nested List Item 2b </li>
</ul>
</li>
</ul>
</li>
<li>List Item 3</li>
</ul>
The list items will be marked with bullets (small black discs followed by circles then squares in the nesting by default)
More Information including:
Unordered Lists used for Navigation
More Information Description Lists