<html>
<head>
<title>tr tag</title>
</head>
<body>
<h1>This is a table:</h1>
<table>
<tr>
<th>Id</th>
<th>Name</th>
</tr>
<tr>
<td>110</td>
<td>mukesh</td>
</tr>
<tr>
<td>111</td>
<td>mahesh</td>
</tr>
</table>
</body>
</html>