-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (28 loc) · 1013 Bytes
/
Copy pathindex.html
File metadata and controls
30 lines (28 loc) · 1013 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
30
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- PLEASE NO CHANGES BELOW THIS LINE (UNTIL I SAY SO) -->
<script language="javascript" type="text/javascript" src="libraries/p5.min.js"></script>
<script language="javascript" type="text/javascript" src="libraries/p5.sound.min.js"></script>
<script language="javascript" type="text/javascript" src="ClimbOn.js"></script>
<!-- OK, YOU CAN MAKE CHANGES BELOW THIS LINE AGAIN -->
<!-- This line removes any default padding and style.
You might only need one of these values set. -->
<style> body { padding: 0; margin: 0; } </style>
</head>
<style>
canvas {
position: absolute;
width: 600px;
height: 400px;
left: 50%;
top: 50%;
margin-left: -320px; /* This is half the width */
margin-top: -240px; /* This is half the height */
}
</style>
<body>
<div id="p5_loading" class="loadingclass"><h1>loading...</h></div>
</body>
</html>