This repository has been archived by the owner on Sep 13, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (49 loc) · 2.56 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta charset="UTF-8">
<title>CleanPlate - A to-do list app</title>
<meta name="author" content="Benjamin">
<meta name="description" content="A to-do list app using localStorage to help keep you plate clean and to-do list manageable">
<meta name="keywords" content="to-do, localStorage, task list, tasks, simple, clean">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta name="HandheldFriendly" content="true" />
<link rel="shortcut icon" href="favicon.ico" type="image/vnd.microsoft.icon" />
<link rel='stylesheet' href='//fonts.googleapis.com/css?family=Pontano+Sans' type='text/css' media="all"/>
<link rel="stylesheet" href="css/reset.css" type="text/css" media="all" />
<link rel="stylesheet" href="css/cleanPlate.css" type="text/css" media="all" />
<link rel="stylesheet" href="css/print.css" type="text/css" media="print" />
<link rel="stylesheet" href="humane/themes/libnotify.css" type="text/css" media="all" />
<script src="humane/humane.min.js" type="text/javascript"></script>
<script src="js/cleanPlate.js" type="text/javascript"></script>
</head>
<body onload="initialize()">
<div id="nothingTodo" class="hidden">
<p><h1>Add your first task below.</h1> Think hard about it, though. You can only have <span class="highlight">seven</span> tasks and <span class="highlight">seven</span> days to complete each task. Don't worry, it'll help keep your <span class="highlight">plate clean</span>. Have fun! <div class="hint">P.S. If you need, you can save <span class="highlight">one</span> task indefinitely.</div></p>
</div>
<ul id="tasks">
<li id="todo0" class="todo hidden saved"></li>
<li id="todo1" class="todo hidden"></li>
<li id="todo2" class="todo hidden"></li>
<li id="todo3" class="todo hidden"></li>
<li id="todo4" class="todo hidden"></li>
<li id="todo5" class="todo hidden"></li>
<li id="todo6" class="todo hidden"></li>
<li id="todo7" class="todo hidden"></li>
<li id="addTodo">
<input name="newTask" type="text" id="newTask" onKeyPress="return submitOnEnter(event)" placeholder="Write your new task here" />
<input name="addTask" type="button" id="addTask" onclick="addTask(document.getElementById('newTask').value)" value="Add Task" />
</li>
</ul>
<div id="footer">
<div>
<a href="index.html"><img src="cleanPlate.png" alt="Clean Plate" /></a>
</div>
<ul id="nav">
<li><a href="about.html">f.a.q.</a></li>
</ul>
</div>
</body>
</html>