-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
123 lines (122 loc) · 3.9 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Osmania University Results - 2024</title>
</head>
<body>
<div class="main_container">
<p class="first_main_container_p">
BCA (CBCS) Nov-2024 Results - 16-Mar-2025
</p>
<div class="search_container">
<p>Enter Hall Ticket No.</p>
<input id="inputHall" type="number" />
<button id="search" onclick="inputTag()">Submit</button>
</div>
<div class="hiddenStudentData" id="studentData">
<p></p>
<div class="studentData_profile">
<table border="2">
<tr>
<th colspan="4" style="text-align: center">Personal Details</th>
</tr>
<tr>
<td class="secondColor">Hall Ticket No.</td>
<td id="hallTicket">N/A</td>
<td class="secondColor">Gender</td>
<td id="gender">N/A</td>
</tr>
<tr>
<td class="secondColor">Name</td>
<td id="NameOutput">N/A</td>
<td class="secondColor">Phone No.</td>
<td id="phoneno">N/A</td>
</tr>
<tr>
<td class="secondColor">Course</td>
<td id="course">N/A</td>
<td class="secondColor">Medium</td>
<td id="medium">N/A</td>
</tr>
</table>
</div>
<div class="studentData_subjects">
<table border="2">
<tr>
<th colspan="4">Marks Details</th>
</tr>
<tr class="secondColor">
<td>Code</td>
<td>Subject</td>
<td>Credits</td>
<td>Grade Secured</td>
</tr>
<tr>
<td id="paper_id01"></td>
<td id="Subject01"></td>
<td id="creadits01"></td>
<td id="grade1"></td>
</tr>
<tr>
<td id="paper_id02"></td>
<td id="Subject02"></td>
<td id="creadits02"></td>
<td id="grade2"></td>
</tr>
<tr>
<td id="paper_id03"></td>
<td id="Subject03"></td>
<td id="creadits03"></td>
<td id="grade3"></td>
</tr>
<tr>
<td id="paper_id04"></td>
<td id="Subject04"></td>
<td id="creadits04"></td>
<td id="grade4"></td>
</tr>
<tr>
<td id="paper_id05"></td>
<td id="Subject05"></td>
<td id="creadits05"></td>
<td id="grade5"></td>
</tr>
</table>
</div>
<div class="studentData_gpa">
<table border="2">
<tr>
<th colspan="2">Result</th>
</tr>
<tr>
<td>Semeter</td>
<td>Result with SGPA</td>
</tr>
<tr>
<td>1</td>
<td id="gpa"></td>
</tr>
</table>
</div>
<div class="print_page">
<p>
This information is provided to the candidate on his/her online
request and is only a prototype list.
</p>
<div class="button-group">
<a href="/assets/meme1.gif"
><button style="color: red">Print page</button></a
>
<a href="/assets/meme2.jpg" style="margin-left: 20px"
><button style="width: 130px; color: red">Download PDF</button></a
>
</div>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>