-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (36 loc) · 1.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>test facebook app</title>
<link rel="stylesheet" href="app.css" type="text/css" />
<link rel="stylesheet" href="normalize.css" type="text/css" />
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<link href='https://fonts.googleapis.com/css?family=Roboto:400,500' rel='stylesheet' type='text/css'>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="https://cdn.firebase.com/js/client/2.2.6/firebase.js"></script>
<script src="app.js"></script>
</head>
<body>
<!-- <script src="fconnect.js"></script> -->
<header>
<nav>
<!-- <a id="settings" href=""><i class="fa fa-cog"></i></a> -->
<!-- <h3 id="fb-welcome">Hello Yanko</h3> -->
<input id="input" type="text" value="" placeholder="new task" />
<button id="addBtn" onclick="preventDefault();" href="#"><i class="fa fa-plus"></i></button>
</nav>
<div>
<ul id="users">
<li><a href="#"><img src="tmp0.jpg" /></a></li>
<li><a href="#"><img src="tmp1.jpg" /></a></li>
</ul>
</div>
</header>
<div id="taskBox">
<ul></ul>
</div>
<div id="fb-root"></div>
<div id="content"></div>
</body>
</html>