The order of list items matters. Make sure to list Pants
and then Shorts
.
<html>
<body>
<h1>Hipster Clothes Inc.</h1>
<ul>
<li>Tops
<ol>
<li>Shirts</li>
<li>Suits</li>
<li>Blouses</li>
</ol>
</li>
<li>Bottoms
<ol>
<li>Pants</li>
<li>Shorts</li>
</ol>
</li>
<li>Accessories</li>
</ul>
</body>
</html>]]>