-
-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (25 loc) · 746 Bytes
/
index.html
File metadata and controls
28 lines (25 loc) · 746 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'; style-src 'self'" />
<title>Smart Notes MVP</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div id="container">
<div id="sidebar">
<button id="new-note">+ New Note</button>
<ul id="notes-list"></ul>
</div>
<div id="main-area">
<div id="editor-toolbar">
<button id="save-note">💾 Save</button>
</div>
<textarea id="editor" placeholder="Write markdown here..." disabled></textarea>
</div>
</div>
<script src="main.js"></script>
</body>
</html>