-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathabout.html
124 lines (114 loc) · 6.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- 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>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us</title>
<!-- Add your CSS file if applicable -->
<link rel="stylesheet" type="text/css" href="css/about.css">
<!-- Add Font Awesome CSS for icons -->
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<link rel="icon" type="image/x-icon" href="/images/favicon.ico">
<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 http-equiv="X-UA-Compatible" content="IE=edge" />
<link
href="https://unpkg.com/[email protected]/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">About Us</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>
<main>
<section id="about">
<p>Hello! We are <b><a class="profile" href="https://www.linkedin.com/in/sai23/" target="_blank" title="Linkedin Profile">Sai Narayana</a></b> and <b><a class="profile" href="https://www.linkedin.com/in/hariesh-s-r/" target="_blank" title="Linkedin Profile">Hariesh</a></b>, the creators of the SRM IST GPA & CGPA Calculator.</p>
<h2>Who Are We?</h2>
<p>We are students pursuing B.Tech in Computer Science and Engineering (CSE) from the batch of 2021-2025 at SRM Institute of Science and Technology (SRM IST), Trichy Campus. With a passion for simplifying the academic journey, we embarked on this project together.</p>
<h2>Why We Built This Website?</h2>
<p>We understand the challenges that students face when it comes to calculating their GPA and CGPA. Many online tools are available, but they often require entering subject credit details and total semester credits, which can be time-consuming and cumbersome.</p>
<p>To overcome this issue, we decided to build our website. Our goal was to create a user-friendly tool that enables students to calculate their GPA and CGPA without the hassle of entering credit details.</p>
<h2>What Makes Us Different?</h2>
<ul id="what-makes">
<li><strong>Preloaded Courses:</strong> Our website currently features courses available at SRM IST, Trichy Campus. We've eliminated the need for students to manually enter course details.</li>
<li><strong>Ease of Use:</strong> With just a few clicks, students can select their regulation, course, semester, and grades to calculate their GPA and CGPA.</li>
</ul>
<h2>Our Vision</h2>
<p>While we've started with courses available in our Trichy campus, we have plans to expand our offerings. In the future, we aim to include courses available in other SRM IST campuses, making it even more convenient for students across the university.</p>
<p>Thank you for choosing the SRM IST GPA & CGPA Calculator. We hope our tool simplifies your academic journey and helps you achieve your goals.</p>
</section>
</main>
<footer>
<div class="social-menu">
<div class="contributor">
<h4>Sai Narayana</h4>
<ul>
<li><a href="https://github.com/SaiNarayana-B" target="_blank" title="Github Profile"><i class="fab fa-github"></i></a></li>
<li><a href="https://www.linkedin.com/in/sai23/" target="_blank" title="Linkedin Profile"><i class="fab fa-linkedin"></i></a></li>
</ul>
</div>
<div class="contributor">
<h4>Hariesh</h4>
<ul>
<li><a href="https://github.com/HARIESH-SR" target="_blank" title="Github Profile"><i class="fab fa-github"></i></a></li>
<li><a href="https://www.linkedin.com/in/hariesh-s-r/" target="_blank" title="Linkedin Profile"><i class="fab fa-linkedin"></i></a></li>
</ul>
</div>
</div>
</footer>
</body>
</html>