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>