-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (42 loc) · 1.59 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NoteZone</title>
<link rel="stylesheet" href="assets/css/styles.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<header class="titlebar">
<h1>NoteZone</h1>
<nav>
<ul>
<li><a href="index.html" class="active">Notes</a></li>
<li><a href="reminders.html">Reminders</a></li>
<li><a href="settings.html">Settings</a></li>
<li><button class="close-btn">✕</button></li>
</ul>
</nav>
</header>
<main>
<div class="note-list">
<ul> <!-- dynamically added here --></ul>
</div>
<div class="note-editor">
<textarea placeholder="Start typing your note..."></textarea>
<div class="controls">
<button class="save-btn">Save</button>
<button class="new-btn">New</button>
<button class="delete-btn">Delete</button>
</div>
</div>
</main>
</div>
<script src="assets/js/renderer.js"></script>
<script src="assets/js/reminders.js"></script>
<script src="assets/js/settings.js"></script>
</body>
</html>