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>