HTML Dog
Skip to navigation

HTML Tag: ul

Unordered list — a list that has no logical sequence. Used in conjunction with li, which defines the list’s items.

Optional Attributes

Global attributes

Example


<p>I have seen four species of the big cats in the wild:</p>
<ul>
    <li>Lion</li>
    <li>Tiger</li>
    <li>Leopard</li>
    <li>Snow leopard</li>
</ul>
<p>Only the jaguar eludes me.</p>