-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
39 lines (33 loc) · 812 Bytes
/
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
38
39
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="favicon.png">
<title>p5play</title>
<style>
html,
body {
background-color: black;
margin: 0;
padding: 0;
overscroll-behavior: none;
}
</style>
</head>
<body>
<main></main>
<!-- ONLINE LINKS -->
<script src="https://q5js.org/q5.js"></script>
<script src="https://p5play.org/v3/planck.min.js"></script>
<script src="https://p5play.org/v3/p5play.js"></script>
<!-- OFFLINE LINKS -->
<!--
<script src="node_modules/q5/q5.js"></script>
<script src="node_modules/p5play/planck.min.js"></script>
<script src="node_modules/p5play/p5play.js"></script>
-->
<!-- YOUR SKETCH -->
<script src="sketch.js"></script>
</body>
</html>