-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
60 lines (55 loc) · 1.4 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
<!DOCTYPE html>
<html>
<head>
<title>Marks Required Calculator</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css">
<link rel="icon" href="https://app.onlinedegree.iitm.ac.in//static/img/logo.ico">
<style>
</style>
</head>
<body>
<div id="heading">
<h1>Marks Required Calculator</h1>
<h4>by Prasad Patra</h4>
</div>
<form id="marks-form">
<label for="first-dropdown">Level:</label>
<select id="first-dropdown">
<option value="">Select an option</option>
<option value="foundation">Foundation</option>
<!-- <option value="diploma">Diploma</option>
<option value="degree">Degree</option> -->
</select>
<div id="second-dropdown-container" class="hidden">
<label for="second-dropdown">Subject:</label>
<select id="second-dropdown">
</select>
</div>
<div id="calc" class="hidden">
<div id="fields">
</div>
<input type="submit" value="Calculate">
</div>
</form>
<div id="result">
<table>
<thead>
<tr>
<th>Subject</th>
<th>S</th>
<th>A</th>
<th>B</th>
<th>C</th>
<th>D</th>
<th>Pass(E)</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<script src="script2.js"></script>
<script src="script.js"></script>
</body>
</html>