-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
59 lines (57 loc) · 2.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NotesShare | About Us</title>
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link rel="stylesheet" href="assets/css/styles.css">
</head>
<body>
<!-- Navbar -->
<header>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark shadow">
<div class="container">
<a class="navbar-brand fw-bold" href="index.html">NotesShare</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="categories.html">Categories</a>
</li>
<li class="nav-item">
<a class="nav-link" href="notes.html">All Notes </a>
</li>
<li class="nav-item">
<a class="nav-link active" href="about.html">About</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<!-- Hero Section -->
<section class="bg-primary text-white text-center py-5">
<div class="container">
<h1 class="display-4">About NotesShare</h1>
<p class="lead">Empowering students and professionals with free, high-quality notes.</p>
</div>
</section>
<!-- Mission Section -->
<section class="py-5">
<div class="container">
<h2 class="text-center fw-bold mb-4">Our Mission</h2>
<p class="text-center mx-auto" style="max-width: 800px;">NotesShare was created with the goal of providing accessible, high-quality educational resources for everyone. Our platform allows students, teachers, and lifelong learners to share and access notes in a variety of subjects, empowering them to achieve their educational goals.</p>
</div>
</section>
<!-- Bootstrap JavaScript -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>