HTML (35)
'
Table Tag
Table Header = The contents which is declared as header are displayed in different style.
Tag : <th>
Example ↓↓↓↓↓
<html>
<head>
<title>MY Page</title>
</head>
<body>
<table border="3">
<tr>
<th>Special</th>
</tr>
<td>Sample</td>
</tr>
<tr>
<td>Sample</td>
</tr>
</table>
</body>
0 Comments