Listing 17.8. Tabela zawierająca nagłówek i stopkę
<table>
    <thead>
        <tr>
            <th>lp.</th>
            <th>Kolor</th>
            <th>Nazwa koloru</th>
            <th>Kod koloru</th>
        </tr>
    </thead>
    <tfoot>
        <tr>
            <th>lp.</th>
            <th>Kolor</th>
            <th>Nazwa koloru</th>
            <th>Kod koloru</th>
        </tr>
    </tfoot>
    <tbody>
        <tr>
            <td class="lp">1.</td>
            <td style="background: AliceBlue"></td>
            <td>AliceBlue</td>
            <td class="kod">F0F8FF</td>
        </tr>
        ...
    <tbody>
</table>