HTML <ul> Tag

<p>I ate the following fruit (in no particular order):</p>
<ul>
<li>Pomelo</li>
<li>Feijoa</li>
<li>Lychee</li>
</ul>

The above example demonstrates usage of the <ul> element.

The <ul> element represents an unordered list. An unordered list is a list of items, where the order of the items is not important. On an unordered list, changing the order of its items would not materially change the meaning of the document. This is in contrast with an ordered list, where the order of its items is important.

An unordered list contains <li> elements — one for each item in the list.