-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathnavigator.html
More file actions
37 lines (33 loc) · 1.13 KB
/
navigator.html
File metadata and controls
37 lines (33 loc) · 1.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Notes and Study Meterial – Knowlet</title>
<link rel="icon" href="assets/knowlet_icon_round.png" type="image/x-icon">
<link rel="stylesheet" href="assets/styles/navigator.css">
</head>
<body>
<main id="main">
<header class="header">
<button id="back-btn" title="Go Back">←</button>
<h1 id="title"></h1>
<div class="nav-buttons">
<button id="notes-btn" title="Notes">Notes</button>
<button id="pyq-btn" title="PYQ">PYQ</button>
</div>
<p id="path"></p>
</header>
<main class="main">
<section class="subjects-section">
<h2 id="sub-title"></h2>
<div id="contents" class="subjects-grid"></div>
</section>
</main>
<footer class="footer">
<p>© 2025 Knowlet | All rights reserved</p>
</footer>
</main>
<script src="assets/scripts/navigator.js"></script>
</body>
</html>