-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathacademics.html
140 lines (136 loc) · 2.88 KB
/
academics.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<!DOCTYPE html>
<html>
<head>
<title>academics</title>
<link rel="stylesheet" href="D:/Web Developement/ipw/lab da-1/style.css">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap" rel="stylesheet">
</head>
<body>
<h1>Academic Achievements</h1>
<style>
table,
th,
td {
border: 1px solid black;
border-collapse: collapse;
}
</style>
<table>
<caption>Class X Toppers</caption>
<thead>
<tr>
<th>Position</th>
<th>Name</th>
<th>Aggregate%</th>
</tr>
</thead>
<tbody>
<tr>
<td> First</td>
<td>Riddhi Agrawal</td>
<td>98.8 </td>
</tr>
<tr>
<td> Second</td>
<td>Keshav Gard </td>
<td>98.6 </td>
</tr>
<tr>
<td rowspan="2"> Third</td>
<td>Neha Kariya </td>
<td rowspan="2">98.4 </td>
</tr>
<tr>
<td>Siddhi Agrawal </td>
</tr>
<tbody>
</table>
<br><br>
<table>
<caption>Class XII Toppers</caption>
<thead>
<tr>
<th>Position</th>
<th>Name</th>
<th>Aggregate %</th>
</tr>
</thead>
<tbody>
<tr>
<td> First</td>
<td>Purvansh Bal </td>
<td>97 </td>
</tr>
<tr>
<td rowspan="2"> Second</td>
<td>Ishita Agrawal </td>
<td rowspan="2">96.6 </td>
</tr>
<tr>
<td>Samrat Jha</td>
</tr>
<tr>
<td> Third</td>
<td>Manassvi Bharti Jain </td>
<td>96.2 </td>
</tr>
</tbody>
</table>
<br><br>
<table class="demo">
<caption>JEE Toppers</caption>
<thead>
<tr>
<th>Name</th>
<th>Percentile</th>
</tr>
</thead>
<tbody>
<tr>
<td> Chahat Gandhi</td>
<td> 98.9</td>
</tr>
<tr>
<td> Smarika Singh</td>
<td> 97.2</td>
</tr>
<tr>
<td> Deepti Mandal</td>
<td> 96.3</td>
</tr>
<tr>
<td> Rahul Raj Darira</td>
<td> 96.1</td>
</tr>
</tbody>
</table>
<br><br>
<table class="demo">
<caption>NEET Toppers</caption>
<thead>
<tr>
<th>Name</th>
<th>Percentile</th>
</tr>
</thead>
<tbody>
<tr>
<td>Saket Agrawal</td>
<td> 99</td>
</tr>
<tr>
<td>Avanee Dubey</td>
<td> 98.8</td>
</tr>
<tr>
<td>Ayushi Mishra</td>
<td> 97.3</td>
</tr>
<tr>
<td>Aanchal Sahu</td>
<td> 96.9</td>
</tr>
</tbody>
</table>
</body>
</html>