przewiń do treści

HTML, XHTML i CSS. Praktyczne projekty. Wydanie II

Włodzimierz Gajda

<table summary="Literackie nagrody Nobla z lat 1951 - 1973">
    <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>

Listing 30.12. Dwukolumnowa tabela laureatów Nagrody Nobla

Rozdział 30. Projekty

listing-30-12.txt