-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (24 loc) · 930 Bytes
/
Copy pathindex.html
File metadata and controls
30 lines (24 loc) · 930 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
<!DOCTYPE html>
<html>
<head>
<title>CUBE SPACE</title>
<!---jQuery-->
<script src="https://code.jquery.com/jquery-3.1.0.js"></script>
<!---p5js CDN-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.8.0/p5.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.8.0/addons/p5.dom.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.8.0/addons/p5.sound.min.js"></script>
<!---style-->
<link rel="stylesheet" type="text/css" href="mystyle.css">
<!---Google Font-->
<link href="https://fonts.googleapis.com/css?family=Roboto:500i&display=swap" rel="stylesheet">
</head>
<body>
<!---jQuery script-->
<script src="myscript.js"></script>
<!---Canvas Code-->
<script src="sketch.js"></script>
<script src="Box.js"></script>
<script src="Screen.js"></script>
</body>
</html>