-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (51 loc) · 1.2 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
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Kanaya</title>
<link href="stylesheets/screen.css" rel="stylesheet" />
<script type="text/javascript" src="scripts/mootools.js"></script>
<script type="text/javascript" src="scripts/task.js"></script>
</head>
<body>
<header id="main">Kanaya 0.0 pretotype</header>
<section id="container">
<section id="toDo" class="list">
<header>To-Do
<div class="control">
<a href="#" class="add" onClick="addTask('toDo');">[+]</a>
</div>
</header>
<section></section>
</section>
<section id="today" class="list">
<header>Today
<div class="control">
<a href="#" class="add" onClick="addTask('today');">[+]</a>
</div>
</header>
<section></section>
</section>
<section id="inProgress" class="list">
<header>In Progress
<div class="control">
<a href="#" class="add" onClick="addTask('inProgress');">[+]</a>
</div>
</header>
<section></section>
</section>
<section id="done" class="list">
<header>Done
<div class="control">
<a href="#" class="add" onClick="addTask('done');">[+]</a>
</div>
</header>
<section>
</section>
</section>
<aside id="stats" class="list">
<header>Stats</header>
</aside>
</section>
</body>
</html>