HTML provides specific elements for displaying tabular data.
<table> defines the entire table, <tr> defines individual rows, <th> defines table headers, and <td> defines table cells.
The <thead> element marks the table header, while <tbody> marks the main body of the table.
Example
The following example shows a simple table with a header and body section.