this is my test article for test purposethis is my test article for test purpose
asddasdasdad
this is my test article for test purpose this is my test article for test purpose this is my test article for test purpose this is my test article for test purpose this is my test article for test purpose<!DOCTYPE html>
<html>
<head>
<title>Simple Table</title>
<style>
table {
width: 50%;
border-collapse: collapse;
}
th, td {
border: 1px solid #333;
padding: 8px;
text-align: left;
}
th {
background-color: #f2f2f2;
}
</style>
</head>
<body>
<h2>Sample Table</h2>
<table>
<thead>
<tr>
<th>Name</th>
<th>Age</th>
<th>Occupation</th>
</tr>
</thead>
<tbody>
<tr>
<td>Alice</td>
<td>30</td>
<td>Engineer</td>
</tr>
<tr>
<td>Bob</td>
<td>25</td>
<td>Designer</td>
</tr>
<tr>
<td>Charlie</td>
<td>35</td>
<td>Teacher</td>
</tr>
</tbody>
</table>
</body>
</html>