-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
36 lines (36 loc) · 1 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
<!DOCTYPE html>
<html>
<head>
<title></title>
<link rel="stylesheet" type="text/css" href="style.css"/>
<script type="text/javascript" src="behavior.js"></script>
<script type="text/javascript" src="writingarea.js"></script>
<script type="text/javascript" src="snippet.js"></script>
<script type="text/javascript" src="history.js"></script>
</head>
<body>
<div>
<div class="new-button">
<span class="plus" id="createNew">+</span>
<span class="text">New</span>
</div>
<div id="past">
<h1>Recently written</h1>
<div id="history-previous"></div>
<div id="history-next"></div>
</div>
<div id="container">
<h1 id="today"></h1>
<textarea id="maintext" class="writehere placeholder" autofocus="true">
Start writing...
</textarea>
<div class="notifications">
<p id="message"> </p>
<p id="autosave"> </p>
</div>
</div>
</div>
<button id="donewriting" class="action">Done for now</button>
<div id="taglist"></div>
</body>
</html>