Adding list items to an unordered list works just like an ordered list.

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

Sweet! The only difference between coding ordered and unordered lists is the tags you use to surround list items.

Make sure to assemble <li> since "l" stands for list and "i" stands for item.