
Membuat Kolom Bersusun
<html>
<head>
<title>
Belajar HTML Table</title>
</head>
<body>
<table border="2"width="450">
<tr>
<td>Kolom 1</td><td>Kolom 2</td><td>Kolom 3</td>
</tr>
<tr>
<td>Kolom 1A</td><td>Kolom 2A</td><td>Kolom 3A</td>
</tr>
<tr>
<td>Kolom 1B</td><td>Kolom 2B</td><td>Kolom 3B</td>
</tr>
<tr>
<td>Kolom 1C</td><td>Kolom 2C</td><td>Kolom 3C</td>
</tr>
</table>
</body>
</html>