|
| 1 | +<html lang="en"> |
| 2 | + |
| 3 | +<head> |
| 4 | + <meta charset="UTF-8"> |
| 5 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 6 | + <title>GPA | CGPA Calculator</title> |
| 7 | + <link rel="stylesheet" href="css/main.css"> |
| 8 | + <style> |
| 9 | + .background-container { |
| 10 | + background-image: url("https://images.unsplash.com/photo-1442606383395-175ee96ed967?q=80&fm=jpg&s=5c8c74be9bc91b47c79a1aaf92264be5"); |
| 11 | + background-size: cover; |
| 12 | + background-repeat: no-repeat; |
| 13 | + padding: 20px; /* Add padding to keep content away from edges */ |
| 14 | + } |
| 15 | + </style> |
| 16 | +</head> |
| 17 | + |
| 18 | +<body> |
| 19 | + <div class="background-container"> |
| 20 | + |
| 21 | + <!-- Sidebar Menu --> |
| 22 | + <div id="sideMenu" class="sidebar"> |
| 23 | + <a href="javascript:void(0)" class="closebtn" onclick="closeMenu()">×</a> |
| 24 | + <a href="index.html">Home</a> |
| 25 | + <a href="gpa-calculator.html">GPA Calculator</a> |
| 26 | + <a href="cgpa-calculator.html">CGPA Calculator</a> |
| 27 | + <a href="about.html">About</a> |
| 28 | + <a href="contact.html">Contact</a> |
| 29 | + </div> |
| 30 | + |
| 31 | + <!-- Menu Button --> |
| 32 | + <span class="menuicon" onclick="openMenu()">☰ </span> |
| 33 | + |
| 34 | + <!-- Main Content --> |
| 35 | + <div class="container"> |
| 36 | + <!-- Hero Section --> |
| 37 | + <section class="hero"> |
| 38 | + <div class="hero-content"> |
| 39 | + |
| 40 | + </div> |
| 41 | + </section> |
| 42 | + |
| 43 | + <!-- Features --> |
| 44 | + <section class="features"> |
| 45 | + <h2>Why Use Our Calculators?</h2> |
| 46 | + <div class="feature-box-container"> |
| 47 | + <div class="feature-box"> |
| 48 | + <h3>Accurate & Reliable</h3> |
| 49 | + <p>We use the official grading criteria of SRM IST to ensure accurate GPA & CGPA results.</p> |
| 50 | + </div> |
| 51 | + <div class="feature-box"> |
| 52 | + <h3>Easy to Use</h3> |
| 53 | + <p>With an intuitive design, you can calculate your GPA & CGPA in a few easy steps without even knowing the credit details.</p> |
| 54 | + </div> |
| 55 | + <div class="feature-box"> |
| 56 | + <h3>Plan Ahead</h3> |
| 57 | + <p>Get insights into your academic progress and set goals for your future semesters.</p> |
| 58 | + </div> |
| 59 | + </div> |
| 60 | + </section> |
| 61 | + |
| 62 | + <!-- Call to Action --> |
| 63 | + <section class="cta"> |
| 64 | + <h2>Ready to Start?</h2> |
| 65 | + <p>Calculate your GPA or CGPA now and take a step towards academic success!</p> |
| 66 | + <div class="links"> |
| 67 | + <a href="gpa-calculator.html" class="calculate-button">Calculate GPA</a> |
| 68 | + <a href="cgpa-calculator.html" class="calculate-button">Calculate CGPA</a> |
| 69 | + </div> |
| 70 | + </section> |
| 71 | + |
| 72 | + <!-- Testimonials --> |
| 73 | + <section class="testimonials"> |
| 74 | + <h2>What Students Are Saying</h2> |
| 75 | + <div class="testimonial"> |
| 76 | + <p>"This tool has been a game-changer for me. It's so easy to track my progress!"</p> |
| 77 | + <cite>- Sivabalan, 3rd Year AI-ML</cite> |
| 78 | + </div> |
| 79 | + <div class="testimonial"> |
| 80 | + <p>"I love how simple it is. It has helped me set my academic goals."</p> |
| 81 | + <cite>- Guru V, 3rd Year ECE</cite> |
| 82 | + </div> |
| 83 | + </section> |
| 84 | + |
| 85 | + <!-- Footer --> |
| 86 | + <footer> |
| 87 | + <p>© 2023 Designed by Sai Narayana & Hariesh</p> |
| 88 | + </footer> |
| 89 | + </div> |
| 90 | + |
| 91 | + <!-- JavaScript for the sidebar menu --> |
| 92 | + <script> |
| 93 | + function openMenu() { |
| 94 | + document.getElementById("sideMenu").style.width = "250px"; |
| 95 | + } |
| 96 | + |
| 97 | + function closeMenu() { |
| 98 | + document.getElementById("sideMenu").style.width = "0"; |
| 99 | + } |
| 100 | + </script> |
| 101 | + |
| 102 | + </div> |
| 103 | + |
| 104 | +</body> |
| 105 | + |
| 106 | +</html> |
0 commit comments