Code ::
<!DOCTYPE html>
<table border="1" cellspacing="10px">
<tr>
<th rowspan="2" colspan="2" > </th>
<th colspan="3"> Faculty</th>
</tr>
<tr>
<th>Arts</th>
<th>Science</th>
<th>Commerce</th>
</tr>
<tr>
<th rowspan="2"> Students</th>
<th>Boys</th>
<td>100</td>
<td>400</td>
<td>500</td>
</tr>
<tr>
<th>Girls</th>
<td> 300</td>
<td> 300</td>
<td> 400</td>
</tr>
</table>