Materi : Latihan8.html
Silakan copy paste ke notepad dan simpan dengan nama Latihan8.html.
Kemudian jalankan menggunakan browser.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Page Description">
<title>Table with RowSpan and ColSpan</title>
</head>
<body>
<h1>Table with RowSpan and ColSpan Example</h1>
<table border="1">
<tr>
<th>Heading 1</th>
<th>Heading 2</th>
</tr>
<tr>
<td colspan="2">Col 1</td>
</tr>
<tr>
<td>Col 2</td>
</tr>
</table>
<h1>Table with RowSpan and ColSpan Example</h1>
<table border="1">
<tr>
<th>Heading 1</th>
<th>Heading 2</th>
</tr>
<tr>
<td rowspan="2">Col 1</td>
<td>Col 2</td>
</tr>
<tr>
<td>Col 2</td>
</tr>
</table>
</body>
</html>
Output