semantic-ui table
by Kevin Mwangi
HTML
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/1.11.8/semantic.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/1.11.8/semantic.min.js"></script>
<table class="ui celled structured unstackable table">
<thead>
<tr>
<th colspan="2">Name</th>
<th colspan="2">Type</th>
<th colspan="2">Languages</th>
</tr>
<tr>
<th>Male</th>
<th>Female</th>
<th>Male</th>
<th>Female</th>
<th>Male</th>
<th>Female</th>
</tr>
</thead>
<tbody>
<tr>
<td>3</td>
<td>0</td>
<td>8</td>
<td>4</td>
<td>7</td>
<td>1</td>
</tr>
</tbody>
</table>