The HTML tables allow web authors to arrange data into rows and columns of cells.
<table>
tag<tr>
tag<th>
tag<td>
tag.<!DOCTYPE html>
<html>
<head>
<title>HTML Tables</title>
</head>
<body>
<table>
<tr>
<th>Name</th>
<th>Place</th>
<th>Age</th>
</tr>
<tr>
<td>John</td>
<td>Bangalore</td>
<td>24</td>
</tr>
<tr>
<td>Smith</td>
<td>Mumbai</td>
<td>26</td>
</tr>
<tr>
<td>Jackson</td>
<td>Mysore</td>
<td>27</td>
</tr>
</table>
</body>
</html>
This will produce the following result −