html
tags and execution of those tags with some examples. body
tag and whatever the content written using body tag which is visible in the web browser contains following tags.<th>
is defined as the Table headings.
<td>
is defined as the Table data.
<tr>
is defined as the Table row.
[html]
<!DOCTYPE html>
<html>
<body>
<table style="width:100%">
<tr>
<td>Rock</td>
<td>Mith</td>
<td>50</td>
</tr>
<tr>
<td>Luis</td>
<td>Kate</td>
<td>94</td>
</tr>
<tr>
<td>Willson</td>
<td>Nikson</td>
<td>80</td>
</tr>
</table>
</body>
</html>
[/html]
Output of the above code as shown in below image.