HTMLHTML12 min read

HTML Lists

Make bullet lists and step lists using ul, ol, and li.

David Miller
Dec 22, 2025
10.3k359

Lists help you show multiple points clearly.

Bullet list (ul)

<ul>
  <li>Open tickets</li>
  <li>Resolved tickets</li>
  <li>Pending tickets</li>
</ul>

Step list (ol)

<ol>
  <li>Login</li>
  <li>Open dashboard</li>
  <li>Check tickets</li>
</ol>

Preview

• Open tickets
• Resolved tickets
• Pending tickets

If ordered:

  1. Login
  2. Open dashboard
  3. Check tickets
#HTML#Beginner