Table allow us to show dataset in the form of table. We can easily represent the dataset using row and the columns.
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HTML COURSE</title>
</head>
<body>
<table>
<thead>
<tr>
<th>Sno</th>
<th>Name</th>
<th>Phone</th>
</tr>
</thead>
<tbody>
<tr>
<td>2</td>
<td>Mukesh</td>
<td>8888888</td>
</tr>
<tr>
<td>3</td>
<td>Mukesh</td>
<td>8888888</td>
</tr>
<tr>
<td>4</td>
<td>Mukesh</td>
<td>8888888</td>
</tr>
<tr>
<td>5</td>
<td>Mukesh</td>
<td>8888888</td>
</tr>
</tbody>
</table>
</body>
</html>I hope you will like it. If you face any issue or have any doubt please connect with me via facebook messenger chat floating on the right side of the screen :)
happy learning :)
