Introduction:
The HTML <table>
tag is used for defining a table. The table tag contains other tags that define the structure of the table.
Example:
<html>
<head>
<title>HTML table Tag</title>
</head>
<body>
<table border = "1">
<tr>
<td>Cell 1</td>
<td>Cell 2</td>
</tr>
</table>
</body>
</html>
0 comments :
Post a Comment