HTML Tables
An HTML table is defined with the “<table>” tag. Each table row is defined with the “<tr>” tag. A table header is defined with the “<th>” tag. By default, table headings are bold and centered. A table data/cell is defined with the “<td>” tag.
HTML Table Example : -
<!DOCTYPE html>
<html>
<body>
<table >
<tbody>
<tr>
<td>FULL NAME</td>
<td>AGE </td>
</tr>
<tr>
<td>Rony Azad</td>
<td>17</td>
</tr>
<tr>
<td>Yaseen </td>
<td>19</td>
</tr>
<tr>
<td>Vasit Azad</td>
<td>22</td>
</tr>
<tr>
<td>Adil Azad</td>
<td>21</td>
</tr>
<tr>
<td>Shibhuu</td>
<td>21</td>
</tr>
</tbody>
</table>
</body>
</html>
— The output of the above example will look something like this:-