-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (28 loc) · 1.05 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
<!DOCTYPE html>
<html>
<head>
<!-- Hosted Styles -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css"/>
<!-- Local Styles -->
<link rel="stylesheet" href="css/style.css"/>
</head>
<body>
<div class="container">
<h1>Firebase Todo List</h1>
<h3>Todo</h3>
<div id="active"></div>
<h3>Completed</h3>
<div id="closed"></div>
<div>
<input type="TEXT" id="task" class="form-control" placeholder="Enter a task"/>
</div>
</div>
<!-- hosted libraries -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<script src='https://cdn.firebase.com/js/client/2.2.1/firebase.js'></script>
<!-- local libraries -->
<script src="js/main.js"></script>
</body>
</html>