-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
71 lines (66 loc) · 2.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" href="index.css" />
<title>RTU SGPA Calculator</title>
</head>
<body>
<header>
<div class="logo">
<h1>RTU SGPA Calculator</h1>
</div>
</header>
<div class="container">
<div class="calculator">
<label for="semester">Semester:</label>
<select id="semester">
<option value="0" selected>1st Semester</option>
<option value="1">2nd Semester</option>
<option value="2">3rd Semester</option>
<option value="3">4th Semester</option>
<option value="4">5th Semester</option>
<option value="5">6th Semester</option>
<option value="6">7th Semester</option>
<option value="7">8th Semester</option>
</select>
<div id="subjectInputs"></div>
<button id="calculate">Calculate SGPA</button>
<div id="result"></div>
</div>
</div>
<script type="module" src="index.js"></script>
<footer>
<p>
Made with ❤️ by
<a href="https://jansh7784.github.io/portfolio-A-Z/" target="_blank"
><img
src="https://www.svgrepo.com/show/267862/portfolio.svg"
alt="GitHub Logo"
width="20"
height="20"
/>
Ansh Jain</a
>
</p>
<p>
Connect with me here:
<a href="https://github.com/jansh7784" target="_blank"
><img
src="https://www.svgrepo.com/show/512317/github-142.svg"
alt="GitHub "
width="20"
height="20"
/></a>
<a href="https://www.linkedin.com/in/ansh--jain/" target="_blank"
><img
src="https://www.svgrepo.com/show/448234/linkedin.svg"
alt="LinkedIn "
width="20"
height="20"
/></a>
</p>
</footer>
</body>
</html>