-
Notifications
You must be signed in to change notification settings - Fork 7
/
notes.html
103 lines (100 loc) · 3.45 KB
/
notes.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
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="theme-color" content="#ffffff">
<link rel="manifest" href="favicons/manifest.json">
<link rel="shortcut icon" href="favicons/favicon.ico">
<link rel="apple-touch-icon" sizes="180x180" href="favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicons/favicon-16x16.png">
<link rel="mask-icon" href="favicons/safari-pinned-tab.svg" color="#008bf8">
<link rel="stylesheet" href="style.css">
<title>Noteherder</title>
</head>
<body>
<div class="App">
<div class="Main">
<nav class="Sidebar">
<div class="logo">
<img src="media/quill.svg" alt="Noteherder">
</div>
<a class="new-note" href="/notes">
<img src="media/new-hover.png" alt="New note">
<img class="outline" src="media/new.png" alt="New note">
</a>
<div class="SignOut">
<button>
<i class="fa fa-sign-out"></i>
</button>
</div>
</nav>
<div class="NoteList">
<h3>Notes</h3>
<ul id="notes">
<a class="active">
<li>
<div class="note">
<div class="note-title">
Kohlrabi welsh
</div>
<div class="note-body">
<p>
Veggies es bonus vobis, proinde vos postulo essum magis kohlrabi welsh onion daikon amaranth tatsoi tomatillo melon azuki bean garlic.
</p>
</div>
</div>
</li>
</a>
<a>
<li>
<div class="note">
<div class="note-title">
Dandelion cucumber
</div>
<div class="note-body">
<p>
Gumbo beet greens corn soko endive gumbo gourd. Parsley shallot courgette tatsoi pea sprouts fava bean collard greens dandelion okra wakame tomato. Dandelion cucumber earthnut pea peanut soko zucchini.
</p>
</div>
</div>
</li>
</a>
<a>
<li>
<div class="note">
<div class="note-title">
Prairie turnip
</div>
<div class="note-body">
<p>
Nori grape silver beet broccoli kombu beet greens fava bean potato quandong celery. Bunya nuts black-eyed pea prairie turnip leek lentil turnip greens parsnip.
</p>
</div>
</div>
</li>
</a>
</ul>
</div>
<div class="NoteForm">
<div class="form-actions">
<button type="button">
<i class="fa fa-trash-o"></i>
</button>
</div>
<form>
<p>
<input
type="text"
name="title"
placeholder="Title your note"
>
</p>
<textarea name="body"></textarea>
</form>
</div>
</div>
</div>
</body>
</html>