<html>
<head>
<title>Таблица</title>
</head>
<body>
<h1 aling="center">Это Таблица</h1>
<table border="1" width="80%" align="center">
<tr height="200">
<td colspan="2">1</td>
</tr>
<tr height="200">
<td>3</td>
<td rowspan="2">4</td>
</tr>
<tr height="200">
<td >5</td>
</tr>
</table>
</body>
</html>