-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
111 lines (95 loc) · 4.2 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SRM CGPA GPA Calculator</title>
<link rel="icon" type="image/x-icon" href="/images/favicon.png">
<link rel="stylesheet" href="css/main.css">
<meta name="keywords" content="SRM CGPA, SRM CGPA calculator, SRM GPA, SRM GPA calculator">
<meta name="description" content="SRM GPA & CGPA calculator website tailored for SRM IST, Trichy Campus, to simplify academic performance tracking.">
<meta name="google-site-verification" content="gmETgyVAuRii3D12Ivf47izLH82PdpdyBaaBsT99LDc" />
<style>
.background-container {
background-image: url("images/index-bg.jpg");
background-size: cover;
background-repeat: no-repeat;
padding: 20px; /* Add padding to keep content away from edges */
}
</style>
</head>
<body>
<div class="background-container">
<!-- Sidebar Menu -->
<div id="sideMenu" class="sidebar">
<a href="javascript:void(0)" class="closebtn" onclick="closeMenu()">×</a>
<a href="index.html">Home</a>
<a href="gpa-calculator.html">GPA Calculator</a>
<a href="cgpa-calculator.html">CGPA Calculator</a>
<a href="about.html">About</a>
<a href="contact.html">Contact</a>
</div>
<!-- Menu Button -->
<span class="menuicon" onclick="openMenu()">☰ </span>
<!-- Main Content -->
<div class="container">
<!-- Hero Section -->
<section class="hero">
<div class="hero-content">
</div>
</section>
<!-- Features -->
<section class="features">
<h2>Why Use Our Calculators?</h2>
<div class="feature-box-container">
<div class="feature-box">
<h3>Accurate & Reliable</h3>
<p>We use the official grading criteria of SRM IST to ensure accurate GPA & CGPA results.</p>
</div>
<div class="feature-box">
<h3>Easy to Use</h3>
<p>With an intuitive design, you can calculate your GPA & CGPA in a few easy steps without even knowing the credit details.</p>
</div>
<div class="feature-box">
<h3>Plan Ahead</h3>
<p>Get insights into your academic progress and set goals for your future semesters.</p>
</div>
</div>
</section>
<!-- Call to Action -->
<section class="cta">
<h2>Ready to Start?</h2>
<p>Calculate your GPA or CGPA now and take a step towards academic success!</p>
<div class="links">
<a href="gpa-calculator.html" class="calculate-button">Calculate GPA</a>
<a href="cgpa-calculator.html" class="calculate-button">Calculate CGPA</a>
</div>
</section>
<!-- Testimonials -->
<section class="testimonials">
<h2>What Students Are Saying</h2>
<div class="testimonial">
<p>"This tool has been a game-changer for me. It's so easy to track my progress!"</p>
<cite>- Sivabalan, 3rd Year AI-ML</cite>
</div>
<div class="testimonial">
<p>"I love how simple it is. It has helped me set my academic goals."</p>
<cite>- Guru V, 3rd Year ECE</cite>
</div>
</section>
<!-- Footer -->
<footer>
<p>© Designed by Sai Narayana & Hariesh</p>
</footer>
</div>
<!-- JavaScript for the sidebar menu -->
<script>
function openMenu() {
document.getElementById("sideMenu").style.width = "250px";
}
function closeMenu() {
document.getElementById("sideMenu").style.width = "0";
}
</script>
</div>
</body>
</html>