When we don't want to number the items on our list, we can use an unordered list. For example, the navigation menu for a website:
  

<html>
 <body>
  <ul>
   <li>Home</li>
   <li>About</li>
   <li>Contact</li>
  </ul>
 </body>
</html>
]]>