-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (32 loc) · 1.01 KB
/
index.html
File metadata and controls
35 lines (32 loc) · 1.01 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>Class Notes Repository</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<header class="site-header">
<div class="container">
<h1>Class Notes</h1>
<p class="subtitle">Download notes for DSA, OOPS, Software Engineering & Digital Electronics</p>
<div class="controls">
<input id="search" placeholder="Search notes or subjects..." />
<select id="subjectFilter">
<option value="all">All subjects</option>
</select>
</div>
</div>
</header>
<main class="container">
<div id="subjects" class="subjects-grid"></div>
</main>
<footer class="site-footer">
<div class="container">
<small>Made by Ronit with ❤️ — place your notes in <code>assets/notes/*</code> and update <code>notes.json</code>.</small>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>