<ul>

An unordered list is a list in which the order of items is not significant.

List items are typically indicated by bullets or dashes.

The following attributes are available on this element: universal attributes and @compact.

Example

The following code sample shows a list in which the order of items is unimportant:

<p>Here are the countries that I have visited:</p>
<ul>
  <li>Germany</li>
  <li>France</li>
  <li>Japan</li>
  <li>Mexico</li>
</ul>