-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathclass10.html
More file actions
109 lines (97 loc) · 4.2 KB
/
class10.html
File metadata and controls
109 lines (97 loc) · 4.2 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
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Class 10 Notes - NoteHub</title>
<link rel="stylesheet" href="assets/css/styles.css">
<link rel="icon" type="image/x-icon" href="assets/favicon.ico">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
</head>
<body>
<!-- Header Navigation -->
<header class="header">
<div class="container">
<nav class="navbar">
<div class="logo">
<span class="logo-icon">📚</span>
<span class="logo-text">NoteHub</span>
</div>
<ul class="nav-menu" id="navMenu">
<li><a href="index.html">Home</a></li>
<li><a href="school.html" class="active">School</a></li>
<li><a href="college.html">College</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<div class="hamburger" id="hamburger">
<span></span>
<span></span>
<span></span>
</div>
</nav>
</div>
</header>
<!-- Breadcrumb -->
<div class="breadcrumb">
<div class="container">
<a href="index.html">Home</a> / <a href="school.html">School</a> / <span>Class 10</span>
</div>
</div>
<!-- Subjects Section -->
<section class="content-section">
<div class="container">
<h1 class="page-title">Class 10 Notes</h1>
<p class="page-description">Select a subject to access comprehensive notes and study materials</p>
<div class="cards-grid">
<a href="/subjects/school/class_10/maths10.html" class="content-card">
<div class="card-icon">📐</div>
<h3>Mathematics</h3>
<p>Real Numbers, Polynomials, Trigonometry & more</p>
</a>
<a href="/subjects/school/class_10/science10.html" class="content-card">
<div class="card-icon">🔬</div>
<h3>Science</h3>
<p>Chemical Reactions, Life Processes, Electricity & more</p>
</a>
<a href="/subjects/school/class_10/english10.html" class="content-card">
<div class="card-icon">📖</div>
<h3>English</h3>
<p>Literature, Grammar & Writing Skills</p>
</a>
<a href="/subjects/school/class_10/hindi10.html" class="content-card">
<div class="card-icon">🇮🇳</div>
<h3>Hindi</h3>
<p>Hindi Literature & Grammar</p>
</a>
<a href="/subjects/school/class_10/socialscience10.html" class="content-card">
<div class="card-icon">🌏</div>
<h3>Social Science</h3>
<p>History, Geography, Civics & Economics</p>
</a>
<a href="/subjects/school/class_10/sanskrit10.html" class="content-card">
<div class="card-icon">🕉️</div>
<h3>Sanskrit</h3>
<p>Sanskrit Literature & Grammar (Optional)</p>
</a>
<a href="/subjects/school/class_10/computer10.html" class="content-card">
<div class="card-icon">💻</div>
<h3>Computer Applications</h3>
<p>Networking, HTML, and Cyber Ethics</p>
</a>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="container">
<p class="footer-credit">Made with 💙 by Gaurav, Nikhil & Devansh</p>
<p class="footer-copyright">© 2025 NoteHub StudySpace</p>
</div>
</footer>
<!-- Back to Top Button -->
<button id="backToTop" class="back-to-top">↑</button>
<!-- JavaScript -->
<script src="assets/js/main.js"></script>
</body>
</html>