0% found this document useful (0 votes)
62 views1 page

Simple HTML Table Template

This HTML document contains a simple table with 3 columns and 3 rows of data to demonstrate a basic HTML table structure. The table has a title, headings for each column, and cells of data within the rows under each heading. This provides a template for displaying tabular data on a web page.

Uploaded by

john viente
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
62 views1 page

Simple HTML Table Template

This HTML document contains a simple table with 3 columns and 3 rows of data to demonstrate a basic HTML table structure. The table has a title, headings for each column, and cells of data within the rows under each heading. This provides a template for displaying tabular data on a web page.

Uploaded by

john viente
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

<!

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