<!
-- <table>
</table>
<th></th>== this stand for table heading
<td></td>== table data
<tr></tr>== table row -->
<!DOCTYPE html>
<html>
<head>
<style>
table,td,th{border:2px solid red;
border-collapse:collapse
}
</style>
</head>
<body>
<!-- starting of table tag -->
<table>
<!-- starting of first row-->
<tr>
<th>roll no.</th>
<th>name</th>
<th>address</th>
<th>emailid</th>
</tr>
<!-- end of first row-->
<!-- second row-->
<tr>
<td>1</td>
<td>charchil</td>
<td>kamla nagar</td>
<td>charchil@gmail.com</td>
</tr>
<!--third row-->
<tr>
<td>2</td>
<td>pankaj</td>
<td>shastri nagar</td>
<td>pankaj@gmail.com</td>
</tr>
<!--forth row-->
<tr>
<td>3</td>
<td>naman</td>
<td>burari</td>
<td>naman@gmail.com</td>
</tr>
</table>
<!-- closing of table tag -->
</body>
</html>