The HTML <table> tag represents the table in an HTML document. The <table> tag contains other tags that define the structure of the whole table like as <tr> and <td> tags etc.
Example of Code
<table>
<tr>
<th>HTML</th>
</tr>
<tr>
<td>Hypertext Markup Language</td>
</tr>
</table>
Output
HTML Hypertext Markup Language
