<!DOCTYPE html>
<html lang="en-US">
<head>
<style>
table, th, td{
border: 1px solid #8c8c8c;
border-collapse: collapse;
}
</style>
</head>
<body>
<table>
<thead>
<tr>
<th>Students</th>
<th>Count</th>
</tr>
</thead>
<tbody>
<tr>
<td>Male</td>
<td>28</td>
</tr>
<tr>
<td>Female</td>
<td>30</td>
</tr>
</tbody>
<tfoot align="right">
<tr>
<td>Total</td>
<td>58</td>
</tr>
</tfoot>
</table>
</body>
</html>