We'll code a nested list to display all the clothing items the website has to offer.
  

<html>
 <body>
  <h3 style="padding:0px; margin:0px;">Hipster Clothes Inc.</h3>
  <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
    <ol>
     <li>Bags</li> 
     <li>Watches</li>
    </ol>
   </li>
  </ul>
 </body>
</html>
]]>