About

The table reprensentation in HTML.

Example

table * {
   border: 1px solid blue;
   padding: 1.4rem
}
<table>
    <thead>
        <tr>
            <th colspan="2">The table header</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>The table body</td>
            <td>with two columns</td>
        </tr>
    </tbody>
</table>

Documentation / Reference