Answers for "thead tbody tfoot in html"

0

thead tbody tfoot in html

<table border="1">
<thead>
<tr>
<th>cats</th>
<th>dogs</th>
</tr>
</thead>

<tbody>
<tr>
<td>7</td>
<td>6</td>
</tr>
</tbody>

<tfoot>
<tr>
<th colspan="2">Cats win!</th>
</tr>
</tfoot>

</table>
Posted by: Guest on October-20-2021

Browse Popular Code Answers by Language