To add a list item, we add text between the <li> and </li> tags. Just like the list items of an ordered list.

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

Make sure to assemble <li>Contact</li>.