Download as pdf or txt
Download as pdf or txt
You are on page 1of 2

Assignment-5

<html>
<head>
<title>to display table tag with it's subtags</title>
</head>
<body>
<table border="1">
<tr>
<th>Roll No.</th>
<th>Student name</th>
<th>Department</th>
<th>Address</th>
</tr>
<tr>
<td>46</td>
<td>Ramesh</td>
<td>BBA</td>
<td>kolhapur</td>
</tr>
<tr>
<td>70</td>
<td>suresh</td>
<td>BSc</td>
<td>kolhapur</td>
</tr>
<tr>
<td>100</td>
Assignment-5
<td>sham</td>
<td>BA</td>
<td>kolhapur</td>
</tr>
</table>

</body>
</html>

You might also like