<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>HTML'de Tablo (colspan, rowspan) Örneği</title>
</head>
<body>
<table border="1" width="100%">
<thead>
<tr>
<th>Yıl</th>
<th>İsim</th>
<th>Meslek</th>
</tr>
</thead>
<tbody>
<tr>
<td rowspan="2">2019</td>
<td>Tayfun Erbilen</td>
<td>Web Developer</td>
</tr>
<tr>
<td colspan="2">Mehmet Seven - Web Developer</td>
</tr>
</tbody>
</table>
</body>
</html>