przewiń do treści

HTML, XHTML i CSS. Praktyczne projekty. Wydanie II

Włodzimierz Gajda

<table summary="Tabela ekstraklasy...">
    <col id="k1" />
    <col id="k2" />
    <col />
    <thead>
        <tr id="w1">
            <th scope="col">lp.</th>
            <th scope="col">Klub</th>
            <th scope="col"><a href="ekstraklasa-r.html">Punkty</a></th>
        </tr>
    </thead>
    <tfoot>
        <tr>
            <th scope="col">lp.</th>
            <th scope="col">Klub</th>
            <th scope="col"><a href="ekstraklasa-r.html">Punkty</a></th>
        </tr>
    </tfoot>
    <tbody>
        <tr>
            <th scope="row">1.</th>
            <td>Zagłębie Lubin</td>
            <td>62</td>
        </tr>
        <tr>
            <th scope="row">2.</th>
            <td>GKS Bełchatów</td>
            <td>61</td>
        </tr>
        ...
    <tbody>
</table>

Listing 30.13. Tabela ekstraklasy

Rozdział 30. Projekty

listing-30-13.txt