What is Table Headers in HTML 5
HTML table headers are defined with th elements.
Example
<!Doctype Html>
<html>
<head>
<title>Table Headers</title>
</head>
<body>
<table width="200" height="200" border="1">
<tr>
<th>Name</th>
<th>Age</th>
</tr>
<tr>
<td>Ram</td>
<td>22</td>
</tr>
<tr>
<td>Shyam</td>
<td>24</td>
</tr>
</table>
</body>
</html>
Post Your Comment