Nested Lists

Nested Lists are not the easiest things to grasp - at least for me they weren't. It took me forever to wrap my brain around these things. Below is a very basic nested list example so you can really see what’s going on here. For more complicated examples of nested lists just view the source code on my tools page. That whole page is done with nested upon nested lists - it does not get any more complicated than that!

<ul>
<li>List</li>
<li>List</li>
<li>List
    <ul>
    <li>Nested List</li>
    <li>Nested List</li>
    <li>Nested List</li>
    </ul>
</li>
</ul>