HTML Tables
Tables display data in rows and columns. Use them for tabular data — not for page layout.
Table Tags
| Tag | Purpose |
|---|---|
<table> | Container for the whole table |
<thead> | Header section |
<tbody> | Body/data section |
<tfoot> | Footer section (totals, notes) |
<tr> | Table row |
<th> | Header cell (bold, centred) |
<td> | Data cell |
Spanning
Use colspan="2" to span multiple columns, and rowspan="2" to span multiple rows.