HTML 5

by atlantismultimedia

HTML

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8" />
        <title>Tableau</title>
    </head>
    <body>
        <table border="1">
            <caption>Liste des gens</caption>
            <thead>
                <tr>
                    <th>Prenom</th>
                    <th>Nom</th>
                    <th>Age</th>
                    <th>Ville</th>
                </tr>
            </thead>
            <tbody>
                <tr>
                    <td colspan="4">Ligne fusionnée</td>
                </tr>
                <tr>
                    <td>Joe</td>
                    <td>Dupont</td>
                    <td>8 ans</td>
                    <td rowspan="2">Fusion horizontale</td>
                </tr>
                <tr>
                    <td>Joe</td>
                    <td>Dupont</td>
                    <td>8 ans</td>
                </tr>
            </tbody>
            <tfooter>
                <tr>
                    <th>Prenom</th>
                    <th>Nom</th>
                    <th>Age</th>
                    <th>Ville</th>
                </tr>
            </tfooter>
        </table>
    </body>
</html>