Learn how to create tables using the <table> tag.
Back to HomeHTML tables are created using the following structure:
<table>
<tr>
<th>Header 1</th>
<th>Header 2</th>
</tr>
<tr>
<td>Row 1, Column 1</td>
<td>Row 1, Column 2</td>
</tr>
</table>
Create a table with **two rows** and **two columns**. The first row should contain **headers**.