get it on google playCreated with Sketch.
HTML> Unordered lists

Unordered lists

To create an unordered list, we use the <ul> tag. The U stands for "unordered" and the L stands for "list".

 <body>
  <ul>
  </ul>
 </body>

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

 <body>
  <ul>
   <li>Home</li>
   <li>About</li>
   <li>Contact</li>
  </ul>
 </body>
TRY IT ON THE APP