The second type of list is an unordered list. An unordered list displays a list of bulleted items. Like the navigation bar of a website.

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