-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (29 loc) · 1.32 KB
/
index.html
File metadata and controls
29 lines (29 loc) · 1.32 KB
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>
<title>To Do App</title>
<!--Custom CSS-->
<link rel="stylesheet" type="text/css" href="to_do.css">
<!--Fonts-->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
</head>
<body>
<!-- Task Data API -->
<div class="tdl-holder">
<h2>TO DO </h2>
<div class="tdl-content">
<ul>
<li><label><input type="checkbox"><i></i><span>get up</span><a href='#'><i class="fa fa-times"></i></a></label></li>
<li><label><input type="checkbox"><i></i><span>stand up</span><a href='#'><i class="fa fa-times"></i></a></label></li>
<li><label><input type="checkbox"><i></i><span>don't give up the fight.</span><a href='#'><i class="fa fa-times"></i></a></label></li>
<li><label><input type="checkbox"><i></i><span>save the world.</span><a href='#'><i class="fa fa-times"></i></a></label></li>
<li><label><input type="checkbox"><i></i><span>do something else</span><a href='#'><i class="fa fa-times"></i></a></label></li>
</ul>
</div>
<input type="text" class="tdl-new" placeholder="Write new item and hit 'Enter'...">
</div>
<!-- TO DO JS -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="todo.js" type="text/javascript"></script>
</body>
</html>