-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmaths1.html
More file actions
97 lines (89 loc) · 3.76 KB
/
Copy pathmaths1.html
File metadata and controls
97 lines (89 loc) · 3.76 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gurukilli - Science 1</title>
<link rel="stylesheet" href="allsubjects.css">
<link rel="stylesheet" href="translate.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/your-fontawesome-kit.js" crossorigin="anonymous"></script>
</head>
<body>
<header class="banner">
<nav class="navbar sticky">
<div class="logo-container">
<img src="/gurukilli.png" alt="Gurukilli Logo" class="logo">
</div>
<li style="list-style-type: none; margin-bottom: 0;"> <div id="google_translate_element"></div></li>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="authentication/frontend/register.html">Subjects</a></li>
<li><a href="../index.html">Logout</a></li>
</ul>
</nav> </header>
<main id="subjects" class="subjects">
<h1 class="section-title">Maths 1 - Gurukilli</h1>
<div id="breadcrumbs" class="breadcrumbs"></div>
<div id="content-area" class="content-area">
<div class="search-bar">
<input type="text" id="search" placeholder="Search for chapters...">
<button onclick="searchChapter()">Search</button>
</div>
<div id="chapters-container" class="chapters-container">
<!-- Chapters will be dynamically inserted here -->
</div>
</div>
</main>
<button class="menu-toggle" aria-label="Toggle menu">
<span></span>
<span></span>
<span></span>
</button>
<div class="box">
<img src="back-g.jpg" alt="Languages">
<div class="overlay">
<h3>Previos Year Questins</h3>
<p>Exam pattern and key topics guide.</p>
<a href="#" class="btn">Explore</a>
</div>
</div>
<footer>
<div class="footer-content">
<div class="footer-section">
<h4>About Gurukilli</h4>
<p>Empowering 10th-grade students with innovative learning solutions.</p>
</div>
<div class="footer-section">
<h4>Quick Links</h4>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#subjects">Subjects</a></li>
<li><a href="#about">About Us</a></li>
<li><a href="#login">Login</a></li>
</ul>
</div>
<div class="footer-section">
<h4>Contact Us</h4>
<p>Email: <a href="mailto:info@gurukilli.com">info@gurukilli.com</a></p>
<p>Phone: <a href="tel:+11234567890">+1 (123) 456-7890</a></p>
</div>
</div>
<div class="footer-bottom">
<p>© 2024 Gurukilli. All rights reserved.</p>
<p>Made with <i class="fas fa-heart"></i> by <strong>CodeVerse</strong></p>
<p>Our Team: Swaraj Mohite, Akshay Kedar, Harshada Lokare, Hemanshu Patil</p>
</div>
</footer>
<script src="maths1.js"></script>
<script type="text/javascript">
function googleTranslateElementInit() {
new google.translate.TranslateElement(
{pageLanguage: 'en'},
'google_translate_element'
);
}
</script>
<script type="text/javascript" src="https://translate.google.com/translate_a/element.js?cb=googleTranslateElementInit"></script>
</body>
</html>