Listing 22.11. Dwukolumnowa tabela laureatów Nagrody Nobla
<table>
    <thead>
        <tr>
            <th scope="col">Rok</th>
            <th scope="col">Laureat</th>
        </tr>
    </thead>
    <tfoot>
        <tr>
            <th scope="col">Rok</th>
            <th scope="col">Laureat</th>
        </tr>
    </tfoot>
    <tbody>
        <tr>
            <th scope="row">1951</th>
            <td>P. Lagerkvist (Sz)</td>
        </tr>
        <tr>
            <th scope="row">1952</th>
            <td>F. Mauriac (F)</td>
        </tr>
        ...
    <tbody>
</table>