Örnek
<style>
thead {color:red;}
tbody {color:black;}
tfoot {color:pink;}
table, th, td {
border: 1px solid black;
}
</style>
<table>
<thead>
<tr>
<th>Ay</th>
<th>Gider</th>
</tr>
</thead>
<tfoot>
<tr>
<td>Ocak</td>
<td>100 TL</td>
</tr>
</tfoot>
<tbody>
<tr>
<td>Şubat</td>
<td>50 TL</td>
</tr>
<tr>
<td>Mart</td>
<td>70TL</td>
</tr>
</tbody>
</table>
Bu etiket HTML tablosunun başlık etiketini gruplandırmakta kullanılmaktadır.
Codepen Ön izleme
<style>
thead {color:red;}
tbody {color:black;}
tfoot {color:pink;}
table, th, td {
border: 1px solid black;
}
</style>
<table>
<thead>
<tr>
<th>Ay</th>
<th>Gider</th>
</tr>
</thead>
<tfoot>
<tr>
<td>Ocak</td>
<td>100 TL</td>
</tr>
</tfoot>
<tbody>
<tr>
<td>Şubat</td>
<td>50 TL</td>
</tr>
<tr>
<td>Mart</td>
<td>70TL</td>
</tr>
</tbody>
</table>
See the Pen HTML thead tag by W3TR (@w3tr) on CodePen.