-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (41 loc) · 1.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Notes</title>
<link rel="stylesheet" href="css/notes.css"></link>
<script src="js/notes.js"></script>
</head>
<body>
<div id="app">
<div class="toolbar">
<button class="toolbar-button">New</button>
<button class="toolbar-button">Delete</button>
<input class="toolbar-search" type="text" placeholder="Search...">
</div>
<div class="note-container">
<div class="note-selectors">
<div class="note-selector active">
<p class="note-selector-title">First note...</p>
<p class="note-selector-timestamp">Timestamp here...</p>
</div>
<div class="note-selector">
<p class="note-selector-title">Second note...</p>
<p class="note-selector-timestamp">Timestamp here...</p>
</div>
<div class="note-selector">
<p class="note-selector-title">Third note...</p>
<p class="note-selector-timestamp">Timestamp here...</p>
</div>
</div>
<div class="note-editor">
<p class="note-editor-info">Timestamp here...</p>
<textarea class="note-editor-input">
First note...
Note text here...
</textarea>
</div>
</div>
</div>
</body>
</html>