The tag is <ul>…</ul>
The unordered list is a container tag and is used for bulleted lists.
Example of unordered (bulleted) list goes like this:
<ul>
<li>My first item on the list.</li>
<li>My second item on the list.</li>
<li>My third item on the list.</li>
<li>My fourth item on the list.</li>
</ul>
List
The list tag is <li>…</li>
The listed item tag is a container tag and is nested within the ordered or unordered tags.