Student information table
Student information table[html code]
<html>
<body>
<h1>Student information list</h1>
<table border="1">
<tr>
<th>SI no</th>
<th>Name</th>
<th>class</th>
<th>branch</th>
<th>register no</th>
</tr>
<tr>
<th>1</th>
<th>Anupam</th>
<th>1st semister</th>
<th>computer science</th>
<th>2000CS001</th>
</tr>
<tr>
<th>2</th>
<th>Amulya</th>
<th>1st semister</th>
<th>computer science</th>
<th>2000CS002</th>
</tr>
<table>
</body>
</html>
output
Comments
Post a Comment