help me crate the table using html coding plzzz
Attachments:
![](https://hi-static.z-dn.net/files/d25/7fa2ef830dad451cb6de925bb020bac8.jpg)
Answers
Answered by
0
Answer:
<head>
<title>table</title>
</head>
<body>
<table border = "1">
<tr>
<th rowspan="2">Year</th>
<td colspan="3">Student</td>
</tr>
<tr>
<td>boys</td>
<td>girls</td>
<td>total</td>
</tr>
<tr>
<td>2006</td>
<td>55</td>
<td>75</td>
<td>130</td>
</tr>
<tr>
<td>2007</td>
<td>75</td>
<td>95</td>
<td>170</td>
</tr>
</table>
</body>
</html>
Similar questions