-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
31 lines (28 loc) · 1.02 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Winter Bird Game</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.7.2/p5.min.js" integrity="sha256-Hu8qm4q26AVXOWGlyZqO04hF+8WlulgTj51vr0FgNG8=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.7.2/addons/p5.sound.min.js" integrity="sha256-J4zMW4h1Q+phN9U/KCNKRDlMGCuL8uqSsLVeclTF46k=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.7.2/addons/p5.dom.min.js" integrity="sha256-D/ObQKlMXTTSWaefJnNgyHjbE4HSZWoJ1zh72TzHPUA=" crossorigin="anonymous"></script>
<style>
body {
padding: 0;
margin: 0;
background-color: #123;
}
canvas {
position: fixed;
left: 0;
right: 0;
margin-left: auto;
margin-right: auto;
}
</style>
</head>
<body>
</body>
<!-- Powered by Froobit Framework -->
</html>