<ul>
The unordered list element represents a list of items where order is not meaningful.
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
| Environment | Since version |
|---|---|
| chrome | 1.0 |
| firefox | 1.0 |
| safari | 1.0 |
| edge | 12 |