your images table has 4 rows and 4 cols. some of <td>
tags are expanded in rows, and some are expanded in cols. so it would be:
<style>
table, th, td {
border: 1px solid black;
border-collapse: collapse;
}
th, td {
padding: 5px;
text-align: left;
}
</style>
<table style="width:100%">
<tr>
<td rowspan="4">Name</td>
<td rowspan="4">Telephone</td>
<td>Bill Gates</td>
<td>Bill Gates</td>
</tr>
<tr>
<td>Bill Gates</td>
<td>Bill Gates</td>
</tr>
<tr>
<td>Bill Gates</td>
<td>Bill Gates</td>
</tr>
<tr>
<td colspan="2">Bill Gates</td>
</tr>
</table>