-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·24 lines (20 loc) · 886 Bytes
/
index.html
File metadata and controls
executable file
·24 lines (20 loc) · 886 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<!-- change to preferred window title -->
<title>*p5 sketch*</title>
<!-- using p5 version 0.5.11 because above is not compatible with p5.gui.js -->
<!-- also cloudflaring because makes it easy to change version if needed -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.5.11/p5.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.5.11/addons/p5.dom.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.5.11/addons/p5.sound.min.js"></script>
<!-- including p5.gui.js as default because its cool -->
<script src="libraries/quicksettings.js"></script>
<script src="libraries/p5.gui.js"></script>
<script src="sketch.js"></script>
<style> body {padding: 0; margin: 0;} </style>
</head>
<body>
</body>
</html>