forked from opensource-society/notesvault
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfeatures.html
More file actions
47 lines (43 loc) · 1.72 KB
/
features.html
File metadata and controls
47 lines (43 loc) · 1.72 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>NotesVault - Features</title>
<link rel="stylesheet" href="styles.css" />
<link rel="stylesheet" href="features.css" />
</head>
<body>
<section class="features-section">
<h1 class="features-heading">✨ Key Features of NotesVault</h1>
<p class="features-subheading">Empowering your study experience with simplicity and speed.</p>
<div class="features-grid">
<div class="feature-card">
<h2>📚 Organized by Branch & Semester</h2>
<p>Sort your notes smartly by branch and semester, making it easier to browse content.</p>
</div>
<div class="feature-card">
<h2>🔍 Smart Search</h2>
<p>Search notes by subject, semester, or custom tags with instant results.</p>
</div>
<div class="feature-card">
<h2>📝 Jotpad</h2>
<p>Take quick notes or summaries anytime without switching tabs.</p>
</div>
<div class="feature-card">
<h2>📤 Easy Upload</h2>
<p>Upload your notes with a clean form or drag & drop interface.</p>
</div>
<div class="feature-card">
<h2>🌙 Light/Dark Mode</h2>
<p>Switch themes for your comfort and improved readability anytime.</p>
</div>
<div class="feature-card">
<h2>🧾 License-Friendly</h2>
<p>Open-source and transparent — explore the GitHub repo and contribute easily.</p>
</div>
</div>
</section>
<script src="features.js" defer></script>
</body>
</html>