-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
49 lines (46 loc) · 1.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta
name="description"
content="Leapfrog Developer Handbook"
/>
<title>Developer Handbook</title>
<link rel="stylesheet" type="text/css">
<style>
html, body {
margin: 0;
height: 100%;
}
#root {
height: 100%;
}
</style>
</link>
<script src="https://www.gstatic.com/firebasejs/7.13.2/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.13.2/firebase-analytics.js"></script>
<script>
// Your web app's Firebase configuration
var firebaseConfig = {
apiKey: "AIzaSyAUZqbj8Pr7XBejoc_CVl4No5RaC8WNK6c",
authDomain: "lf-handbook.firebaseapp.com",
databaseURL: "https://lf-handbook.firebaseio.com",
projectId: "lf-handbook",
storageBucket: "lf-handbook.appspot.com",
messagingSenderId: "10708737127",
appId: "1:10708737127:web:dea22c868ea73164c648c2",
measurementId: "G-P9D7HGT2JN"
};
// Initialize Firebase
firebase.initializeApp(firebaseConfig);
firebase.analytics();
</script>
</head>
<body>
<iframe id ="root" src="developers_handbook_lf.pdf" type="application/pdf" width="100%" height="100%" />
</body>
</html>