Which tag is used to add table to a HTML?
Answers
Answered by
5
<table> tag is used to add a table to a HTML document.
This tag is a container tag and used inside <body> tag.
This tag have following attributes :
border, bordercolor, align, cellspace etc.
For example,
<table>
<tr>
<td>
Html
</td>
</tr>
</table>
Similar questions