TABLE
Run
<!DOCTYPE html>
<html>
	<head>
		<style>
table, th, td {
  border: 1px solid black;
}
</style>
	</head>
	<body>
		<h1>The table tag</h1>
		<table>
			<tr>
				<th>EmpId</th>
				<th>EmpName</th>
			</tr>
			<tr>
				<td>001</td>
				<td>Aakash</td>
			</tr>
			<tr>
				<td>002</td>
				<td>pratik</td>
			</tr>
		</table>
	</body>
</html>