-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
23 lines (17 loc) · 997 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
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>my EXTN1019 Creative Computing sequencing sketch (Lab 12)</title>
<style> body {padding: 0; margin: 0; overflow: hidden;} </style>
<!-- this is the main p5 library -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.9.4/p5.min.js" integrity="sha512-d6sc8kbZEtA2LwB9m/ck0FhvyUwVfdmvTeyJRprmj7Wg9wRFtHDIpr6qk4g/y3Ix3O9I6KHIv6SGu9f7RaP1Gw==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<!-- this is the Tone.js library -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/tone/15.1.2/Tone.js" integrity="sha512-VbxZhFFmDVpPg5CAmDiLkhTizVdeYBstbyXcF5l4Xmweku4+r8Ao9nsbFwHXf9MO298TeMdq5Uj6vwKM9FEPbA==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<!-- here's where we include the actual sketch file -->
<script src="sketch.js"></script>
</head>
<body>
</body>
</html>