-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (44 loc) · 1.86 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Meta meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>TO Do Project</title>
<!-- CSS & Fonts -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.2/css/bootstrap.min.css" integrity="sha384-y3tfxAZXuh4HwSYylfB+J125MxIs6mR5FOHamPBG064zB+AFeWH94NdvaCBm8qnd" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-xs-3"></div>
<div class="col-xs-6" id="theAppCol">
<h6>ADD ITEM</h6>
<div class="form-inline">
<input type="text" class="form-control mb-2 mr-sm-2 mb-sm-0" id="addInput" placeholder="Eg. Buy new batteries for the watch">
<button type="button" class="btn" id="addButton">Add</button>
</div>
<h6>TO DO</h6>
<!--
<label class="form-check-label"><input class="form-check-input" type="checkbox"> Drive the kids to school</label>
<button type="button" class="btn editButton">Edit</button>
<button type="button" class="btn deleteButton">Delete</button>
-->
<h6>COMPLETED</h6>
<!--
<label class="form-check-label completed"><input class="form-check-input" type="checkbox" checked="checked"> See the doctor</label>
<button type="button" class="btn editButton">Edit</button>
<button type="button" class="btn deleteButton">Delete</button>
-->
</div>
<div class="col-xs-3"></div>
</div>
</div>
<!-- Tether & Bootstrap -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/tether/1.4.0/js/tether.min.js"></script>
<script src="myJS.js"></script>
</body>
</html>