http://www.webdesignfromscratch.com/html-css/html-lists.php on this page's example of nested Unordered lists <ul>
list's code is not validating on W3C validation
this is a code of this page http://www.webdesignfromscratch.com/html-css/html-lists.php
<ul>
<li>Item one</li>
<li>Item two</li>
<li>Watch, you can easily nest list items: This item has some sub-items</li>
<ul>
<li>Sub-item one</li>
<li>Sub-item two</li>
<li>Shall we do a 3rd nested list?</li>
<ul>
<li>OK</li>
<li>Your browser should automatically use different bullet styles for each level.</li>
</ul>
</ul>
</ul>
website owner should test code validity before and after writing code