Wstecz
Zadanie 29.

Przedstawiono tabelę zdefiniowaną kodem HTML, bez formatowania CSS. Który z fragmentów kodu HTML odpowiada pierwszemu wierszowi tabeli?
  1. <table>
     <tr>
      <td>Artykuł</td>
      <td>Rozmiar</td>
      <td>Cena</td>
     </tr>
       <!-- kolejne wiersze -->
    </table>
  2. <table>
     <tr>
      <th><i>Artykuł</i></th>
      <th><i>Rozmiar</i></th>
      <th><i>Cena</i></th>
     </tr>
       <!-- kolejne wiersze -->
    </table>
  3. <table>
     <tr>
      <td><center>Artykuł</center></td>
      <td><center>Rozmiar</center></td> 
      <td><center>Cena</center></td>
     </tr>
       <!-- kolejne wiersze -->
    </table>
  4. <table>
     <tr>
      <th>Artykuł</th>
      <th>Rozmiar</th>
      <th>Cena</th>
     </tr>
       <!-- kolejne wiersze -->
    </table>
D