Recent

6/recent/ticker-posts

HTML (35)

HTML (35)


Software Engineers at Google Give Free Students Affected by COVID-19'



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>
<tr>
<td>Sample</td>
</tr>
<tr>
<td>Sample</td>
</tr>
</table>
</body>
</html>



Post a Comment

0 Comments