Saltar la navegación

colspan y rowspan

<table>
    <thead>
        <tr>
            <th rowspan="2">Mes</th>
            <th colspan="2">España</th>
            <th colspan="2">Francia</th>
        </tr>
        <tr>
            <th>Hablan español</th>
            <th>No hablan español</th>
            ...
        </tr>
    </thead>
    <tbody>
        ...
    </tbody>
</table>

Ver el resultado