<!DOCTYPE html>
<html>
<head>
<title>Simple table Demo </title>
</head>
<body>
<table>
<th>Student Name</th>
<th>College</th>
<tr>
<td>Prayag</td>
<td>Anna University</td>
<tr>
<td>Pankaj</td>
<td>aimtocode tut</td>
<tr>
<td>Rakesh</td>
<td>aimtocode tut</td>
<tr>
<td>Hazra</td>
<td>JAC</td>
<tr>
<td>Mugu</td>
<td>aimtocode tut</td>
</tr>
</table>
</body>
</html>