-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (28 loc) · 953 Bytes
/
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>tasklist</title>
<!-- js -->
<script src='js/jquery-2.1.3.min.js'></script>
<script src = "js/settings.js"></script>
<script src = "js/tasklist.js"></script>
<!-- css -->
<link href='http://fonts.googleapis.com/css?family=Cutive+Mono' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="css/tasklist.css">
</head>
<body>
<section class = "header">
<h1>tasklist</h1>
<nav class = "tab-buttons">
<li id = "show-tasks-tab-button">tasks</li>
<li id = "show-rewards-tab-button">rewards</li>
</nav>
</section>
<div id ="data-container">
</div>
<button id="show-add-task-button">new task</button>
<section class = "footer">
</section>
</body>
</html>