<h4>Table headers:</h4>
<table border="1">
<tr>
<th>Name</th>
<th>Age</th>
<th>Qualification</th>
</tr>
<tr>
<td>Aakash</td>
<td>17</td>
<td>F.Y.B.C.S</td>
</tr>
</table>
<h4>Vertical headers:</h4>
<table border="1">
<tr>
<th>First Name:</th>
<td>Aakash</td>
</tr>
<tr>
<th>Age:</th>
<td>17</td>
</tr>
<tr>
<th>Qualification</th>
<td>F.Y.B.C.S</td>
</tr>
</table>
</body>
</html>
Copy it in your Note-Pad and save it as an htm or an html file and view it in your Default Browser.