Introduction:
The HTML
Example:
The HTML
<th>
tag is used for specifying a header cell (or table header) within a table.Example:
<html> <head> <title>HTML th Tag</title> </head> <body> <table border = "1"> <tr> <th>Tag</th> <th>Description</th> </tr> <tr> <td>th</td> <td>Specifies a table header</td> </tr> </table> </body> </html>
0 comments :
Post a Comment