forked from rspavithra/NOTESTACK
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
78 lines (69 loc) · 2.38 KB
/
index.html
File metadata and controls
78 lines (69 loc) · 2.38 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NOTESTACK</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="app">
<!-- Sidebar -->
<aside class="sidebar">
<div>
<h2>📝 NoteStack</h2>
<ul>
<li class="active" id="navNotes">📝 All Notes</li>
<li id="navImportant">🔴 Important</li>
<li id="navWork">🟡 Work</li>
<li id="navPersonal">🔵 Personal</li>
<li id="navIdeas">🟢 Ideas</li>
<li id="navTrash">🗑️ Trash</li>
</ul>
</div>
<button id="darkModeBtn">🌙 Dark Mode</button>
</aside>
<!-- Main Section -->
<main class="main">
<header class="topbar">
<input type="text" id="searchInput" placeholder="Search notes...">
</header>
<!-- NOTES VIEW -->
<div id="notesView">
<section class="create-note">
<textarea id="noteInput" placeholder="Take a note..."></textarea>
<!-- Color Labels Section -->
<div class="label-selector">
<span class="label-title">Labels:</span>
<div class="label-options">
<label class="label-option">
<input type="checkbox" class="label-checkbox" value="Important">
<span class="label-dot important"></span> Important
</label>
<label class="label-option">
<input type="checkbox" class="label-checkbox" value="Work">
<span class="label-dot work"></span> Work
</label>
<label class="label-option">
<input type="checkbox" class="label-checkbox" value="Personal">
<span class="label-dot personal"></span> Personal
</label>
<label class="label-option">
<input type="checkbox" class="label-checkbox" value="Ideas">
<span class="label-dot ideas"></span> Ideas
</label>
</div>
</div>
<button id="addNoteBtn">Add Note</button>
</section>
<section id="notesGrid" class="notes-grid"></section>
</div>
<!-- TRASH VIEW (hidden by default) -->
<div id="trashView" style="display:none;">
<section id="trashGrid" class="notes-grid"></section>
</div>
</main>
</div>
<script src="script.js"></script>
</body>
</html>