table

Defines an HTML table with rows and cells for structured data.

Syntax

html
<table><tr><th>Header</th></tr><tr><td>Data</td></tr></table>

Example

html
<table>
  <thead><tr><th>Name</th><th>Age</th></tr></thead>
  <tbody><tr><td>Alice</td><td>28</td></tr></tbody>
</table>