-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (31 loc) · 1.13 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>To Do List</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<link href="index.css" rel="stylesheet" type="text/css" />
<script src="index.js"></script>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-xs-12">
<h2>To Do List</h2>
<div id='todo-list'>
</div>
<form class="form-inline" id="create-task">
<input class="form-control" id="new-task-content" type="text" placeholder="new task" required/>
<button class="btn btn-primary">Create</button>
</form>
</br>
<button class="btn btn-info" id="sort-all">All</button>
<button class="btn btn-info" id="sort-active">Active</button>
<button class="btn btn-info" id="sort-completed">Completed</button>
</div>
</div>
</div>
</body>
</html>