-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
358 lines (320 loc) · 11.9 KB
/
about.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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M3N7TRK3W4"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M3N7TRK3W4');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SRM Internal Mark Calculator</title>
<!-- Font Awesome for icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<!-- Custom CSS -->
<link rel="stylesheet" href="about.css">
<style>
/* Global Styles */
body {
margin: 0;
font-family: 'Times New Roman', Times, serif;
background: #ade2a7;
background-size: 400% 400%;
animation: gradientBG 15s ease infinite;
position: relative;
color: #070707;
line-height: 1.8;
display: flex;
flex-direction: column;
align-items: center;
min-height: 100vh; /* Ensure full height of the viewport */
}
.profile {
text-decoration: none;
color: #000000;
}
.profile:hover {
color: maroon;
text-decoration: underline;
}
.profile:active {
color: red;
text-decoration: underline;
}
@keyframes gradientBG {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
/* Menu Bar Styles */
.side-menu {
position: fixed;
top: 0;
left: -250px;
width: 250px;
height: 100%;
background-color: #111;
transition: left 0.3s ease;
overflow-y: auto;
padding-top: 20px;
z-index: 1000;
}
.side-menu.show {
left: 0;
}
.side-menu ul {
list-style-type: none;
padding: 0;
}
.side-menu ul li {
text-align: left;
}
.side-menu ul li a {
text-decoration: none;
color: #fff;
display: block;
padding: 15px 20px;
font-size: 1.2em;
transition: background-color 0.3s ease;
}
.side-menu ul li a:hover {
background-color: #b00606;
}
.menu-icon {
cursor: pointer;
color: #9797e4;
font-size: 1.2em;
position: absolute;
top: 15px;
left: 15px;
z-index: 1100;
}
.menu-icon.close-menu {
display: none;
}
/* Header Styles */
.header {
width: 100%;
padding: 10px 20px; /* Add padding to create space between menu icon and heading */
background-color: #b6fae1;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
display: flex;
align-items: center;
justify-content: space-between;
}
.header h1 {
margin: 0;
font-size: 1.5em;
color: #2c3e50;
padding-left: 50px; /* Adjust padding to create space between the menu icon and heading */
}
/* Main Content Styles */
main {
margin-top: 10px;
padding: 20px;
width: 60%;
background: #eff2f3;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
border-radius: 20px;
transition: all 0.3s ease-in-out;
animation: fadeIn 1s;
margin-bottom: 0px; /* Adjusted margin to prevent overlap with footer */
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
#about h1,
#about h2 {
color: #2c3e50;
text-align: center;
text-transform: uppercase;
letter-spacing: 2px;
margin-bottom: 20px;
border-bottom: 2px solid #34db58;
display: inline-block;
padding-bottom: 10px;
}
main #about p {
text-align: justify;
margin-bottom: 20px;
font-size: 18px;
}
main ul {
list-style-type: none;
padding: 0;
}
main ul li {
background-color: #ecf0f1;
margin: 10px 0;
padding: 10px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease-in-out; /* Added transition for scale effect */
}
main ul li:hover {
transform: scale(1.05);
box-shadow: 0 0 15px rgba(3, 97, 50, 0.2);
}
/* Footer Styles */
footer {
background-color: rgba(52, 55, 85, 0.9);
padding: 20px;
text-align: center;
color: #ecf0f1;
width: 60%;
height: 130px; /* Adjust the height as needed */
backdrop-filter: blur(5px);
position: relative;
}
footer .contributor {
display: inline-block;
margin: 0 20px;
}
footer .contributor:hover {
transform: scale(1.1);
}
footer .contributor h4 {
margin-bottom: 10px;
}
footer .social-menu {
display: flex;
justify-content: center;
margin-bottom: 10px;
}
footer .social-menu ul {
display: flex;
padding: 0;
}
footer .social-menu ul li {
list-style: none;
display: inline-block;
margin: 0 15px;
}
footer .social-menu ul li .fab {
font-size: 25px;
line-height: 40px;
transition: 0.3s;
color: #000000;
}
footer .social-menu ul li .fab:hover {
color: #fff;
}
footer .social-menu ul li a {
position: relative;
display: block;
width: 40px;
height: 40px;
border-radius: 50%;
background-color: #fff;
text-align: center;
transition: 0.6s;
}
footer .social-menu ul li a:hover {
transform: translate(0, -10%);
}
footer .social-menu ul li:nth-child(1) a:hover {
background-color: #171515;
}
footer .social-menu ul li:nth-child(2) a:hover {
background-color: #0072b1;
}
@media screen and (max-width: 768px) {
main {
width: 80%;
}
footer {
width: 80%;
}
}
@media screen and (max-width: 480px) {
main {
width: 90%;
}
footer {
width: 90%;
}
.side-menu {
width: 200px;
left: -200px;
}
.side-menu.show {
left: 0;
}
}
</style>
</head>
<body>
<!-- Header -->
<header class="header">
<div class="menu-icon" onclick="toggleMenu()">
<i class="fas fa-bars"></i>
</div>
<h1>SRM Internal Mark Calculator</h1>
</header>
<!-- Side Menu -->
<nav class="side-menu" id="side-menu">
<ul>
<li id="ab-home"><a href="index.html"><i class="fas fa-home"></i> Home</a></li>
<li><a href="howtouse.html"><i class="fas fa-question-circle"></i> How to Use?</a></li>
<li><a href="about.html"><i class="fas fa-user"></i> About</a></li>
<li><a href="feedback.html" class="active"><i class="fas fa-comments"></i> Feedback</a></li>
</ul>
<div class="menu-icon close-menu" onclick="toggleMenu()">
<i class="fas fa-times"></i>
</div>
</nav>
<!-- Main Content -->
<main>
<section id="about">
<h1>About This Project</h1>
<p>Welcome to the SRM IST Internal Marks Calculator! This tool is designed to help students predict their external exam marks based on their internal assessments. By inputting your internal marks, you can get an estimate of the marks you need in your external exams to achieve your desired grades.</p>
<p>Developed by Adithyan, a dedicated Computer Science and Engineering (CSE) student at SRM Institute of Science and Technology (SRM IST), Trichy Campus, from the batch of 2021-2025. Inspired by my passion for enhancing the academic experience, I initiated this project.</p>
<h2>Why I Built This Website?</h2>
<p>As a student at SRM Institute of Science and Technology (SRM IST), I understand the challenges students face in calculating internal marks and predicting their external exam marks to achieve desired grades.</p>
<p>To address this, I developed the SRM Internal Marks Calculator. My goal was to create a user-friendly tool that empowers students to predict their external exam marks based on their internal assessments. This helps them strategize and improve their academic performance effectively.</p>
<h2>What Makes SRM Internal Marks Calculator Unique?</h2>
<ul id="what-makes">
<li><strong>Efficient Mark Prediction:</strong> Our calculator simplifies predicting your external exam marks based on internal assessments. It's designed to provide quick and accurate results, saving you time and effort.</li>
<li><strong>Intuitive Interface:</strong> With a user-friendly interface, you can easily select your regulation, course, and input marks with just a few clicks. No more complex calculations or manual data entry required.</li>
</ul>
<h2>Future Plans</h2>
<p>Initially, this website features courses from the SRM IST Trichy Campus. Our vision is to expand the platform to include courses from all SRM IST campuses, enhancing the tool’s accessibility and convenience for students across the entire university. This expansion will ensure that every SRM IST student can benefit from accurate mark prediction and internal mark calculation.</p>
<p>Thank you for choosing the SRM IST Internal Mark Calculator. We are dedicated to simplifying your academic journey and supporting you in achieving your educational goals.</p>
</section>
</main>
<!-- Footer -->
<footer>
<h4>Adithyan</h4>
<div class="social-menu">
<ul>
<li><a href="https://github.com/adi040" target="_blank" title="GitHub"><i class="fab fa-github"></i></a></li>
<li><a href="https://www.linkedin.com/in/p-adithyan/" target="_blank" title="LinkedIn"><i class="fab fa-linkedin"></i></a></li>
</ul>
</div>
</footer>
<script>src="js.js"</script>
<!-- JavaScript for Side Menu Toggle -->
<script>
function toggleMenu() {
var menu = document.getElementById("side-menu");
var menuIcon = document.querySelector(".menu-icon");
menu.classList.toggle("show");
menuIcon.classList.toggle("fixed");
}
</script>
</body>
</html>