Menu
Lists & Tables

<ul> Unordered List

Bullet-point lists — items where order does not matter.

1Bulleted Lists

<ul> wraps a list of items where order is not meaningful. Each item goes inside an <li>.

Example Code
<ul>
  <li>Coffee</li>
  <li>Tea</li>
  <li>Milk</li>
</ul>

Finished reading?

Mark this topic as complete to track progress.