-
Notifications
You must be signed in to change notification settings - Fork 0
/
grid.html
37 lines (34 loc) · 829 Bytes
/
grid.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
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Jishnuthewalker</title>
<style>
body {
padding: 0;
margin: 0;
height: 100vh;
overflow: hidden;
}
.container {
position: absolute;
margin: 50px 0px 0px 50px;
color: white;
font-size: 20px;
}
</style>
<script src="src/p5.js"></script>
<script src="src/p5.easycam.js"></script>
<!-- <script src="../addons/p5.sound.js"></script> -->
</head>
<body bgcolor='black'>
<main>
<div class="container">
<input id="myCheckedEvent" type="checkbox" onclick='switchValue(this)'></input>
<label>whateverthefuck</label>
</div>
<script src="sketches/sketch_0.js"></script>
</main>
</body>
</html>