-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (37 loc) · 1.21 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>To-Do</title>
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="css/custom.css">
</head>
<body>
<header>
<div class="container-fluid ">
<div class="container">
<div class="input-group input-task">
<input type="text" class="form-control" id = "task" placeholder="Enter your task here ....">
<span class="input-group-btn">
<button class="btn btn-danger" type="submit" id="add" >Add Task</button>
</span>
</div><!-- /input-group -->
</div>
</div>
</header>
<div class="container-fluid task-container">
<div class="row">
<div class="col-md-5 col-sm-12 col-xs-12 uncompleted">
<ul class="todo" id="todo"></ul>
</div>
<div class="col-md-5 col-sm-12 col-xs-12 completed">
<ul class="todo" id="completed"></ul>
</div>
</div>
</div>
<script type="text/javascript" src = "js/todo.js"></script>
</body>
</html>