Basic Table Structure
<table>
<thead>
<tr>
<th>Name</th>
<th>Age</th>
<th>City</th>
</tr>
</thead>
<tbody>
<tr>
<td>Alice</td>
<td>28</td>
<td>Mumbai</td>
</tr>
<tr>
<td>Bob</td>
<td>34</td>
<td>Delhi</td>
</tr>
</tbody>
</table>Table Tags
| Tag | Purpose |
|---|---|
<table> | Container for the whole table |
<thead> | Header section |
<tbody> | Body section (data rows) |
<tfoot> | Footer section (totals, etc.) |
<tr> | Table row |
<th> | Header cell (bold, centered by default) |
<td> | Data cell |
Use tables for tabular data only — not for page layout. Use CSS Grid or Flexbox for layout.