HTML table is defined with the <table>
tag. It is used to manage the layout of the page e.g. header, body content, footer etc. HTML <table>
tag is used to display data in tabular form. There can be many columns in a row. Each table row is defined with the <tr>
tag. A table header is defined with the <th>
tag. By default, table headings are bold and centered. A table data/cell is defined with the <td>
tag.