-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (24 loc) · 859 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
<!DOCTYPE html>
<html>
<head>
<title>Written Weekly</title>
<link rel="stylesheet" href="style.css">
<!-- p5.js -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.1.9/p5.min.js"></script>
<!-- p5.js sound addon -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.1.9/addons/p5.sound.min.js"></script>
</head>
<body>
<div id="parent"></div>
<script src="js/sketch.js"></script>
<!-- <script>
var canvas = document.getElementById('defaultCanvas0')
console.log(canvas)
window.onresize = function() {
console.log(window)
canvas.height = window.innerHeight
canvas.width = window.innerWidth;
}
</script> -->
</body>
</html>