-
Notifications
You must be signed in to change notification settings - Fork 0
/
game.html
42 lines (38 loc) · 1.1 KB
/
game.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
<!DOCTYPE html>
<html>
<head>
<meta charset=UTF-8>
<title>Bee Saga</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<style>html {
height: 100%;
margin: 0;
overflow: hidden;
padding: 0;
}
body {
margin: 0;
padding: 0;
}</style>
<script src="./scripts/p5/p5.min.js"></script>
<!--<script src="./scripts/p5/p5.dom.min.js"></script>-->
<!--<script src="./scripts/p5/p5.sound.min.js"></script>-->
<script src="./scripts/sketch.js"></script>
<script src="./scripts/Particle.js"></script>
<script src="./scripts/Bee.js"></script>
</head>
<body>
<div id="game"></div>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-98358203-3"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-98358203-3');
</script>
<!--<script src="./scripts/app.js"></script>-->
</body>
</html>