-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (42 loc) · 1.74 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
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<p style="font-size: 100px; text-align: center;" id="counter"></p>
<p id="class"></p>
<p id="instructor"></p>
<p id="actor"></p>
<p id="book"></p>
<!-- jquery -->
<script src="https://code.jquery.com/jquery-3.4.1.min.js"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<!-- firebase -->
<!-- The core Firebase JS SDK is always required and must be listed first -->
<script src="https://www.gstatic.com/firebasejs/7.2.2/firebase-app.js"></script>
<!-- TODO: Add SDKs for Firebase products that you want to use
https://firebase.google.com/docs/web/setup#available-libraries -->
<script src="https://www.gstatic.com/firebasejs/7.2.2/firebase-storage.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.2.2/firebase-database.js"></script>
<script>
// Your web app's Firebase configuration
var firebaseConfig = {
apiKey: "AIzaSyD34IoaORl5l3Cby5i8XrJ2USN19YiShSY",
authDomain: "yeeteef-4dd6d.firebaseapp.com",
databaseURL: "https://yeeteef-4dd6d.firebaseio.com",
projectId: "yeeteef-4dd6d",
storageBucket: "yeeteef-4dd6d.appspot.com",
messagingSenderId: "809065859617",
appId: "1:809065859617:web:38b46852352334ec19b160"
};
// Initialize Firebase
firebase.initializeApp(firebaseConfig);
</script>
<!-- my script -->
<script src="counter.js"></script>
</body>
</html>