-
Notifications
You must be signed in to change notification settings - Fork 11
/
manish 2409.html
52 lines (45 loc) · 1.23 KB
/
manish 2409.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<html>
<head>
<title> Table Creation </title>
</head>
<body>
<table border="1" align="center" width="300" cellspacing="20" cellpadding="20" bgcolor="lavender">
<caption align="top">
<h1> <b> Student Data </b> </h1>
</caption>
<tr bgcolor="royalblue">
<th>Exam No</th>
<th>Reg No</th>
<th>Student Name</th>
<th>Class</th>
</tr>
<tr bgcolor="cyan">
<td>1111</td>
<td>3231</td>
<td>Naman Shah</td>
<td>11<sup>th</sup></td>
</tr>
<tr bgcolor="darkcyan">
<td>1112</td>
<td>3232</td>
<td>Vivek Mishra</td>
<td>11<sup>th</sup></td>
</tr>
<tr bgcolor="gold">
<td>1113</td>
<td>3233</td>
<td>Yash Chavan</td>
<td>11<sup>th</sup></td>
</tr>
<tr bgcolor="limegreen">
<td>1114</td>
<td>3234</td>
<td>Kunal Kapoor</td>
<td>11<sup>th</sup></td>
</tr>
</table>
<center>
<a href="mainpage.html">go to mainpage</a>
</center>
</body>
</html>