For today's lesson, I will teach you how to create tables. Tables can be used to display tabular data or be used to control the layout of a webpage. Let's start by copying the page from the first lesson and pasting this HTML into the body of the webpage:
<table>
<tr>
<th>Heading 1</th>
<th>Heading 2</th>
<th>Heading 3</th>
</tr>
<tr>
<td>Row 1 Col 1</td>
<td>Row 1 Col 2</td>
<td>Row 1 Col 3</td>
</tr>
<tr>
<td>Row 2 Col 1</td>
<td>Row 2 Col 2</td>
<td>Row 2 Col 3</td>
</tr>
<tr>
<td>Row 3 Col 1</td>
<td>Row 3 Col 2</td>
<td>Row 3 Col 3</td>
</tr>
</table>
The "table" tag is used to create a table, the "tr" tag is used to create a row, the "td" tag is used to create a cell within a row, and the "th" tag is used to create a heading within a row.