-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (55 loc) · 2.29 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
52
53
54
55
56
57
58
<!DOCTYPE html>
<html>
<head>
<title>CheckList</title>
<link rel="shortcut icon" href="icon.png">
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<link href='https://fonts.googleapis.com/css?family=Roboto:400,300' rel='stylesheet'>
<link rel="stylesheet" href="css/animate.min.css">
<link rel="stylesheet" href="css/hover-min.css">
<link rel="stylesheet" href="css/design.css">
</head>
<body>
<div class="col-md-12">
<div class="col-md-6 col-md-offset-3 wow fadeInDown" align="center" data-wow-delay="0.3s">
<div class="col-md-12 card-header">
<input type="text" id="input" placeholder="Add Task and Press ENTER">
<button class="btn btn-primary" id="btn-add">Add</button>
</div>
</div>
<div class="col-md-6 col-md-offset-3">
<div class="col-md-12 card list-div wow fadeInUp" align="left" data-wow-delay="0.6s">
<ul id="list" class="wow fadeIn" data-wow-delay="0.8s">
<li>
<button class="mark-done" id="0">Done</button>Add a task and press enter.
</li>
<li class="strike">
<button class="mark-done completed" id="1">Done</button>Default items will be removed.
</li>
</ul>
<p class="no-ul-message" id="message">
<span class="fa fa-hand-peace-o"></span> Wohoo! All tasks are cleared!!
</p>
<div class="col-md-12 card-footer hvr-sweep-to-right">
<div class="col-md-6" align="left">
<button class="btn btn-clear-task" id="btn-clear-task">
<span class="fa fa-refresh"></span> Clear Completed Tasks
</button>
</div>
<div class="col-md-6 markdone-div" align="right">
<button class="btn btn-clear-task" id="btn-mark-done">
<span class="fa fa-check-square"></span> <span id="mark-all">Mark All as Done</span>
</button>
</div>
</div>
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<script src="js/wow.min.js"></script>
<script src="js/list.js"></script>
</body>
</html>