-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (77 loc) · 4.24 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="NotesShare is your ultimate source for free and accessible notes on all subjects. Explore categories and find the notes you need.">
<meta name="keywords" content="notes, free notes, study notes, educational resources, notes sharing">
<meta name="author" content="NotesShare">
<meta property="og:title" content="NotesShare | Free Notes Sharing">
<meta property="og:description" content="Your ultimate source for free and accessible notes on all subjects.">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NotesShare | Free Notes Sharing</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">
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-5250790497940859"
crossorigin="anonymous"></script>
</head>
<body>
<!-- Interactive 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 active" 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" href="about.html">About</a>
</li>
</ul>
<button type="button" class="btn btn-outline-light ms-3" data-bs-toggle="modal" data-bs-target="#searchModal">
<i class="bi bi-search"></i> Search
</button>
</div>
</div>
</nav>
</header>
<!-- Hero Section with Animation -->
<section class="hero-section d-flex align-items-center text-white text-center">
<div class="container">
<h1 class="display-3 animate__animated animate__fadeInDown">Welcome to NotesShare</h1>
<p class="lead animate__animated animate__fadeInUp">Your ultimate source for free and accessible notes on all subjects.</p>
<a href="categories.html" class="btn btn-light btn-lg mt-4 animate__animated animate__fadeInUp">Explore Categories</a>
</div>
</section>
<!-- Search Modal -->
<div class="modal fade" id="searchModal" tabindex="-1" aria-labelledby="searchModalLabel" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="searchModalLabel">Search Notes</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<input type="text" id="searchBarModal" class="form-control form-control-lg" placeholder="Search for notes..." onkeyup="searchNotes()">
</div>
</div>
</div>
</div>
<!-- JavaScript Libraries for Interactivity and Animations -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/js/all.min.js"></script>
<script src="assets/js/script.js"></script>
</body>
</html>