Services Work Learn About Contact
0/8
Lesson 5 of 8

Lists & Tables

HTML supports ordered lists (<ol>), unordered lists (<ul>), and list items (<li>).

Tables are created with <table>, rows with <tr>, and cells with <td> (data) or <th> (header).

HTML
<!-- Unordered list -->
<ul>
  <li>Apple</li>
  <li>Banana</li>
</ul>

<!-- Simple table -->
<table>
  <tr><th>Name</th><th>Age</th></tr>
  <tr><td>Ali</td><td>25</td></tr>
</table>
🧠

Quick Quiz

Answer correctly to unlock the next lesson.

Support the mission

This learning platform is 100% free: no ads, no tracking, no paywalls. If it helped you learn something useful, you can support future lessons or donate to Doctors Without Borders, which provides emergency medical care in crisis zones worldwide.

🎉

You completed HTML!

You finished all 8 lessons and quizzes. You now know the basics of HTML.