HTML Tables — a practical guide to HTML tables with clear examples you can reuse in real projects.
HTML Tutorial Series (21/79). Prefer one article? Read the complete HTML tutorial.
Short description
Use tables for data — not page layout.
Simple table
<table>
<thead><tr><th>Name</th><th>Role</th></tr></thead>
<tbody><tr><td>Asha</td><td>Editor</td></tr></tbody>
</table>