Content
1) Table tag
2) Tr tag
3) Td tag
Table tag is used to tell browser that ee are going to work on table, it is written at the top from where we start coding of table. To make a table we have to understand some other tags such as tr and td tags
<html>
<body>
<table>
<tr>
<td>hello</td>
</tr>
</table>
</body>
</html >
Tr tag
Tr tag is used to make the row of the table
It is started by <tr> and end with </tr>.
<html>
<body>
<table>
<tr>
<td>hello</td>
</tr>
</table>
</body>
</html >
Td tag
Td tag is used to enter data in tr tag
It is placed inside the tr tag.
<html>
<body>
<table>
<tr>
<td>hello</td>
</tr>
</table>
</body>
</html >
Video tutorial
Hope you like
Please share it to your friends
Have a great day
Comments
Post a Comment