-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (35 loc) · 1.46 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
<!DOCTYPE html>
<html>
<head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.8.0/p5.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.8.0/addons/p5.dom.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.8.0/addons/p5.sound.min.js"></script>
<script src="./p5.play.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
<meta charset="utf-8" />
<!-- The core Firebase JS SDK is always required and must be listed first -->
<script src="https://www.gstatic.com/firebasejs/8.2.1/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.2.1/firebase-database.js"></script>
<!-- TODO: Add SDKs for Firebase products that you want to use
https://firebase.google.com/docs/web/setup#available-libraries -->
<script>
// Your web app's Firebase configuration
var firebaseConfig = {
apiKey: "AIzaSyCPbAi9ySxO3q2fuo2YLdbj9lUCHKCiYaE",
authDomain: "class35-33edc.firebaseapp.com",
projectId: "class35-33edc",
storageBucket: "class35-33edc.appspot.com",
messagingSenderId: "280567646802",
appId: "1:280567646802:web:8e30f1efdd3f2d88fb6d8b"
};
// Initialize Firebase
firebase.initializeApp(firebaseConfig);
</script>
<script src = "Fourm.js"></script>
<script src = "Player.js"></script>
<script src = "Leaderboard.js"></script>
</head>
<body>
<script src="sketch.js"></script>
</body>
</html>