HTML tables are used to display data in rows and columns.
The main table elements are:
<table>– Defines a table<tr>– Defines a table row<th>– Defines a table heading<td>– Defines table data
<table border="1">
<tr>
<th>Name</th>
<th>Age</th>
<th>City</th>
</tr>
<tr>
<td>Ram</td>
<td>22</td>
<td>Kathmandu</td>
</tr>
</table>