<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<table border="1">
<tr>
<td width="50px" height="50px">1</td>
<td width="50px" height="50px">2</td>
<td rowspan="2" width="50px" height="50px">3</td>
<td width="50px" height="50px">4</td>
</tr>
<tr>
<td colspan="2" width="50px" height="50px">5</td>
<td rowspan="2" width="50px" height="50px">6</td>
</tr>
<tr>
<td width="50px" height="50px">7</td>
<td colspan="2" width="50px" height="50px">8</td>
</tr>
</table>
</body>
</html>
HTML
복사
