-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.html
More file actions
68 lines (60 loc) · 1.87 KB
/
main.html
File metadata and controls
68 lines (60 loc) · 1.87 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>📒 DIGITAL NOTEBOOK</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div class="app-container">
<div class="header">
<h1>Digital Notebook</h1>
</div>
<div class="main-content">
<div class="sidebar">
<button class="create-note-btn" onclick="createNewNote()">➕</button>
<div class="stats">
<span id="noteCount">0 notes</span>
</div>
<ul class="notes-list" id="notesList">
<!-- Numbered tabs will be populated here -->
</ul>
</div>
<div class="content-area">
<div class="note-editor hidden" id="noteEditor">
<input
type="text"
class="note-title-input"
id="noteTitle"
placeholder="Enter note title..."
onkeyup="autoSave()"
/>
<textarea
class="note-body-input"
id="noteBody"
placeholder="Start writing your note..."
onkeyup="autoSave()"
></textarea>
<div class="editor-actions">
<button class="action-btn save-btn" onclick="saveCurrentNote()">
💾 Save
</button>
<button
class="action-btn delete-btn"
onclick="deleteCurrentNote()"
>
🗑️ Delete
</button>
</div>
</div>
<div class="empty-state" id="emptyState">
<h2>Welcome to Your Notebook! 📝</h2>
<p>Create your first note to get started</p>
</div>
</div>
</div>
</div>
<script src="index.js"></script>
</body>
</html>