Module 2

HTML Tables, Headings & Text Formatting

20 mins read

Lesson 1: HTML Tables

1.1 Basic Table Structure

HTML tables organize tabular data using `<table>`, `<tr>`, `<th>`, and `<td>` tags.

HTML5
<table class="table">
  <tr>
    <th>Module</th>
    <th>Topic</th>
  </tr>
  <tr>
    <td>Module 1</td>
    <td>Basics</td>
  </tr>
</table>