Skip to content

Tabula

Tabulas var izmantot, lai sakārtotu informāciju rindu un kolonnu veidā.

html
<table>
  <tr>
    <th>Virsraksts 1</th>
    <th>Virsraksts 2</th>
  </tr>
  <tr>
    <td>Dati 1</td>
    <td>Dati 2</td>
  </tr>
  <tr>
    <td>Dati 3</td>
    <td>Dati 4</td>
  </tr>
</table>