-
Notifications
You must be signed in to change notification settings - Fork 3
/
cgpa-calculator.html
182 lines (168 loc) · 5.71 KB
/
cgpa-calculator.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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-SF23JKLTXE"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-SF23JKLTXE');
</script>
<title>SRM CGPA Calculator</title>
<link rel="icon" type="image/x-icon" href="/images/favicon.ico">
<link rel="stylesheet" href="css/cgpa-calculator.css">
<link rel="stylesheet" href="css/main.css">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<link
href="https://unpkg.com/boxicons@2.1.2/css/boxicons.min.css"
rel="stylesheet"
/>
</head>
<body>
<nav>
<div class="logo">
<i class="bx bx-menu menu-icon"></i>
<span class="logo-name" id="heading">SRM CGPA CALCULATOR</span>
</div>
<div class="sidebar">
<div class="logo">
<i class="bx bx-menu menu-icon"></i>
<span class="logo-name">Menu</span>
</div>
<div class="sidebar-content">
<ul class="lists">
<li class="list">
<a href="index.html" class="nav-link" id="home">
<i class="bx bx-home-alt icon"></i>
<span class="link">Home</span>
</a>
</li>
<li class="list">
<a href="gpa-calculator.html" class="nav-link" id="gpa-calculator">
<i class='bx bxs-calculator icon'></i>
<span class="link">GPA Calculator</span>
</a>
</li>
<li class="list">
<a href="cgpa-calculator.html" class="nav-link" id="cgpa-calculator">
<i class='bx bx-calculator icon'></i>
<span class="link">CGPA Calculator</span>
</a>
</li>
<li class="list">
<a href="about.html" class="nav-link" id="about">
<i class='bx bx-group icon'></i>
<span class="link">About</span>
</a>
</li>
<li class="list">
<a href="contact.html" class="nav-link" id="contact">
<i class='bx bx-phone icon'></i>
<span class="link">Contact</span>
</a>
</li>
</ul>
</div>
</div>
</nav>
<section class="overlay"></section>
<script src="js/main.js"></script>
<div class="container">
<br><br>
<div>
<label for="regulation">Select Regulation:</label>
<select id="regulation">
<option value="2018">2018</option>
<option value="2021">2021</option>
</select>
</div>
<div>
<label for="course">Select Course:</label>
<select id="course">
<!-- The course options will be dynamically filled based on the selected regulation -->
</select>
</div>
<div class="semester-input">
<label for="semester1">Semester 1 GPA:</label>
<input type="number" id="semester1" step="0.01" min="0" max="10" required>
</div>
<div id="additional-semesters">
<!-- Additional semester inputs will be added here -->
</div>
<button onclick="addSemester()">Add Another Semester</button>
<button onclick="removeSemester()">Remove Last Semester</button>
<button onclick="calculateCGPA()">Calculate CGPA</button>
<div class="result">
<p>Your CGPA: <span id="cgpa">N/A</span></p>
<br><br>
</div>
</div>
<footer>
<div class="footer-content">
<div class="footer-text">
Developed by
<a href="https://www.linkedin.com/in/sai23/" target="_blank">Sai Narayana</a>
and
<a href="https://www.linkedin.com/in/hariesh-s-r/" target="_blank">Hariesh</a>
</div>
</div>
</footer>
<style>
footer {
background-color: #333;
color: #fff;
padding: 10px 0; /* Reduced height by adjusting padding */
position: fixed;
bottom: 0;
width: 100%;
box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
transition: all 0.3s;
border-radius: 0px;
}
.footer-content {
display: flex;
align-items: center;
justify-content: space-between;
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
.footer-text {
font-size: 16px;
flex: 1;
text-align: center;
}
.footer-text a {
font-weight: 600;
cursor: pointer;
transition: color 0.3s;
color: #fff;
text-decoration: none; /* Removes underline from links */
}
.footer-text a:hover {
color: #b8b8b8;
}
.social-icons {
display: flex;
align-items: center;
}
.social-icons a {
margin-left: 10px;
font-size: 20px;
color: #fff;
transition: color 0.3s;
}
.social-icons a:hover {
color: #0077b5;
}
footer:hover {
transform: translateY(-10px);
box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
}
</style>
<script src="js/cgpa-calculator.js"></script>
</body>
</html>