Computer Science, asked by Anonymous, 10 months ago

Which tag is used to add table to a HTML? ​

Answers

Answered by Rememberful
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