<ul>

The unordered list element represents a list of items where order is not meaningful.

Since HTML 2.0 Spec ↗

Syntax

<ul><li>...</li></ul>

Examples

<ul>
  <li>Apples</li>
  <li>Oranges</li>
  <li>Pears</li>
</ul>
Output
Renders a bulleted list with three items.

Notes

Direct children of <ul> must be <li> elements (or script-supporting elements). Restyle markers with list-style; do not remove semantics by using divs instead.

Browser & runtime support

EnvironmentSince version
chrome 1.0
firefox 1.0
safari 1.0
edge 12

See also