<!DOCTYPE html>
<html>
<head>
<style>
table, th, td {
border: 1px solid black;
}
td, th{
height: 20px;
width: 80px;
}
</style>
</head>
<body>
<table>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td colspan="2"></td>
</tr>
<tr>
<td rowspan="2"></td>
<td colspan="2"></td>
</tr>
<tr>
<td colspan="2" rowspan="2"></td>
</tr>
<tr>
<td></td>
</tr>
<tr>
<td rowspan="2" colspan="3"></td>
</tr>
</table>
</body>
</html>
The output of the code provided is not as expected due to issues with the implementation of rowspan and colspan attributes. To view the desired result image, please refer to the following link: https://drive.google.com/file/d/0B3C84zpiG_wXVEVKU3ZlRFVBd00/view?usp=sharing