You are on page 1of 1

<!

DOCTYPE html>
<html>
<head>
<title>HTML Table Example</title>
</head>
<body>
<h1>Template by Viente</h1>
<table border="1">
<thead>
<tr>
<th>Column 1</th>
<th>Column 2</th>
<th>Column 3</th>
</tr>
</thead>
<tbody>
<tr>
<td>Row 1, Cell 1</td>
</tr>
<tr>
<td>Row 2, Cell 1</td>
</tr>
<tr>
<td>Row 3, Cell 1</td>
</tr>
</tbody>
</table>
</body>
</html>

You might also like