DEV 5.3 Define list and list items properly
Compare with WAI & NDA checkpoints
NDA checkpoints: 2.24, 2.5 (P2)
NDA checkpoints: 2.24, 2.5 (P2)
Examples
A simple nested list
<p>Items needed for holiday:</p>
<ol>
<li>Sunglasses</li>
<li>Swimming things
<ul>
<li>Swimsuit</li>
<li>Towel</li>
</ul>
</li> <!-- note the placement -->
<li>Suncream</li>
<li>Money</li>
</ol>

Note: Even horizontal menus can be coded as lists using CSS, e.g.
- Use
display:inline;on the.uland.lidefinition or; - Use
list-style-type: none;on the.uldefinition,display: block; float: left;on the.lidefinition.
