<html>
<head>
<style>
table{
border-collapse: collapse;
}
table, th, td {
border: 1px solid black;
}
</style>
</head>
<body>
<h1>This is the thead, tbody, and tfoot tag</h1>
<table>
<thead>
<tr>
<th>Subject</th>
<th>Mark</th>
</tr>
</thead>
<tbody>
<tr>
<td>English</td>
<td>60</td>
</tr>
<tr>
<td>Maths</td>
<td>78</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>Sum</td>
<td>138</td>
</tr>
</tfoot>
</table>
</body>
</html>