-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
38 lines (31 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
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="handheldfriendly" content="true">
<meta name="mobileoptimized" content="320">
<title>Notebook</title>
<meta name="title" content="Notebook">
<meta name="description" content="An ultra-simple browser based text app using localstorage">
<link rel="stylesheet" href="app.css">
</head>
<body>
<div class="notebook">
<aside>
<svg viewBox="0 0 24 24" width="32" height="32" fill="currentColor"><path d="M21 4H7a2 2 0 1 0 0 4h14v13a1 1 0 0 1-1 1H7a4 4 0 0 1-4-4V6a4 4 0 0 1 4-4h13a1 1 0 0 1 1 1v1zM5 18a2 2 0 0 0 2 2h12V10H7a3.982 3.982 0 0 1-2-.535V18zM20 7H7a1 1 0 1 1 0-2h13v2z"/></svg>
<label>Enter note title</label>
<input type="text" id="note-title" onfocus="removeTextarea()" onkeypress="if (event.key === 'Enter') createNote()" placeholder="type note title + hit Enter">
<ul id="note-list"></ul>
</aside>
<main></main>
</div>
<footer>
<a href="https://github.com/syndicatefx/notebook">Github</a>
<div>
ch:<span class="chars">0</span>
</div>
</footer>
<script src="app.js"></script>
</body>
</html>