I am having trouble validating my html, my menus are triggering the following error:
"document type does not allow element "li" here; missing one of "ul", "ol" start-tag"
link to validator
link to site
My code is as follows, the menus are drop-down menus
<ul>
<li>
<a href='services' class='inactive'>Services</a>
<ul>
<li><a href='services'>Services</a></li>
<li><a href='brokerage' >Brokerage Group</a></li>
<li><a href='development-group'>Development Group</a></li>
</ul>
</li>
<li ><a href='contact'>Contact</a></li>
</ul>
Am I missing something? Is the ul after the link tag invalidating my code?