<table>
HTML <table> Element Reference
The HTML <table> element represents tabular data organized into rows and columns.
Categories
- Tabular data
Tag omission
Consult the HTML Living Standard for the precise tag-omission rules.
Content model
- Detailed content-model guidance will be added to this reference.
Attributes
Examples
Example
A practical table element example.
<table>
<caption>Plan prices</caption>
<thead><tr><th>Plan</th><th>Price</th></tr></thead>
<tbody><tr><td>Free</td><td>$0</td></tr></tbody>
</table>