HTML Tables

Tables display tabular data using <table>, <tr>, <th>, and <td>.

Key Elements

  • <table>: Table container
  • <tr>: Table row
  • <th>: Table header
  • <td>: Table data
HTML
<table> <tr> <th>Name</th> <th>Age</th> </tr> <tr> <td>John</td> <td>25</td> </tr> </table>

Your Task

Create a table with:

  1. Headers for "Day" and "Task"
  2. Two rows of data for a weekly schedule
AI Learning Assistant

Live Preview