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

HTML Table Example with Data

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)
3 views1 page

HTML Table Example with Data

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

<!

DOCTYLE html>
<html>
<head>
<style>
table {
font-family: arial, sans-serif;
border-collapse: collapse;
width: 100%;
}

td, th {
border: 2px solid #dddddd;
text-align: left;
padding: 8px;
}

tr:nth-child(even) {
background-color: #dddddd;
}
</style>
</head>
<body>
<title>HTML Table</title>

<h2>HTML Table</h2>

<table>
<tr>
<th>Name</th>
<th>Address</th>
<th>Year Level</th>
</tr>
<tr>
<td>JUDY ANN TABAGCURA</td>
<td>ALABIAO TUAO CAGAYAN5:07 AM 8/18/2025</td>
<td>SECOND YEAR</td>
</tr>
</table>

</body>
</html>

You might also like