-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGame.html
More file actions
29 lines (27 loc) · 700 Bytes
/
Copy pathGame.html
File metadata and controls
29 lines (27 loc) · 700 Bytes
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.9.0/p5.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.6.0/addons/p5.dom.min.js"></script>
<script src="js/sketch.js"></script>
<style>
body{
overflow: hidden;
}
#sketch-holder{
width: 800px;
height: 400px;
position: absolute;
top: 0; bottom: 0; left: 0; right: 0;
margin: auto;
}
</style>
<title></title>
</head>
<body>
<div id="sketch-holder">
<!-- Our sketch will go here! -->
</div>
</body>
</html>