-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.htm
56 lines (55 loc) · 1.81 KB
/
index.htm
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
<!DOCTYPE html>
<html lang="en">
<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">
<title>duono</title>
<script src="main.js"></script>
<link href="https://fonts.googleapis.com/css?family=Open+Sans&display=swap" rel="stylesheet">
<link rel="stylesheet" href="main.css">
</head>
<body>
<div id="main">
<div id="left">
<div id="tasks">
<h1>Tasks</h1>
<ul id="taskslist"></ul>
<div id="form">
<input type="text" placeholder="Write your task..." id="addtext">
<p><a id="add" class="add">Add Task</a></p>
</div>
</div>
<div id="done">
<h1>Done</h1>
<ul id="donelist">
</ul>
</div>
<div id="reset">
<p><a id="resetbutton" class="resetbutton">Reset Tasks</a></p>
</div>
</div>
<div id="right">
<div id="calendar">
<ul id="times"></ul>
<ul id="monday"></ul>
<ul id="tuesday"></ul>
<ul id="wednesday"></ul>
<ul id="thursday"></ul>
<ul id="friday"></ul>
<ul id="saturday"></ul>
<ul id="sunday"></ul>
<div id="bar"><p></p></div>
</div>
<div id="nowwork">
<h2 id="worktext">Wait...</h2>
</div>
</div>
</div>
<div id="more">
<h1>Settings</h1>
<textarea id="settings"></textarea>
<p><a href="https://github.com/oekshido/duono/blob/master/README.md">Need Help?</a></p>
</div>
</body>
</html>