forked from lucasklaassen/todolist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (41 loc) · 1.19 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>To Do List</title>
</head>
<link rel="stylesheet" href="assets/css/screen.min.css">
<script type="text/javascript" src="assets/js/html5shiv-printshiv.js"></script>
<script type="text/javascript" src="assets/js/respond.min.js"></script>
<script type="text/javascript" src="assets/js/jquery-1.11.0.min.js"></script>
<body>
<div class="container">
<div class="list-title">
<h1>Simple To-Do List</h1>
</div>
<input type="text" class="form-control inputToDo" placeholder="Enter a To Do...">
<div class="row">
<div class="col-md-6">
<h4>To Do</h4>
<div class="table-responsive">
<table class="table table-striped table-hover todo-checklist">
<tbody>
</tbody>
</table>
</div>
</div>
<div class="col-md-6">
<h4>Completed</h4>
<div class="table-responsive">
<table class="table table-striped table-hover completed-checklist">
<tbody>
</tbody>
</table>
</div>
</div>
</div>
</div>
<!-- end .container -->
<script type="text/javascript" src="assets/js/toDo.js"></script>
</body>
</html>