-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (28 loc) · 992 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
<title>TODO app</title>
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<section class="todo_app container">
<fieldset class="form-group">
<div class="row">
<div class="col-lg-4 col-md-6">
<input id="task" class="form-control" placeholder="buy milk">
</div>
<div class="col-lg-2 col-md-3">
<button id="add" class="btn btn-success btn-block">Add a new todo</button>
</div>
</div>
</fieldset>
<hr>
<h2>Your todos:</h2>
<section id="todos"></section>
</section>
<script src="todo.js"></script>
</body>
</html>