-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (34 loc) · 1.02 KB
/
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
33
34
35
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
/>
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<link rel="apple-touch-icon" href="icon/touch-icon.png" />
<link rel="shortcut icon" href="icon/touch-icon.png" />
<title>organism</title>
<style>
body {
padding: 0;
margin: 0;
/* --Prevent-scrolling-on-iOS */
height: 100%;
overflow: hidden;
width: 100%;
position: fixed;
}
</style>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/lib/p5.js"></script>
<!-- <script src="../addons/p5.sound.js"></script> -->
<script src="javascript/sketch.js"></script>
<script src="javascript/organism.js"></script>
<script src="javascript/food.js"></script>
</head>
<body>
<main></main>
</body>
</html>