Thuta Learning
IntermediateWeb Developmentbeginner

Unordered Lists

Relax. We'll talk through this in plain words — no textbook voice.

Unordered list is for items that don't need a particular order — think feature lists, grocery lists, service lists.

html
<ul>
  <li>Fast loading</li>
  <li>Mobile responsive</li>
  <li>Beginner friendly</li>
</ul>
You should see
You'll see a bullet-point list.
Unordered Lists | Thuta Learning