-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (29 loc) · 784 Bytes
/
index.html
File metadata and controls
32 lines (29 loc) · 784 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
31
32
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Experiment 1</title>
<style>
body {
background-color: #cfe0c3;
}
#simulator{
position:absolute;
width:600px;
height:600px;
color:rgb(74, 187, 231)
}
</style>
</head>
<body>
<!-- Simulation Main Body -->
<div>
<div id="simulator"></div>
<div class="paramerters"></div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.9.4/p5.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.9.4/addons/p5.sound.min.js"></script>
<script src="simulation.js"></script>
</body>
</html>