-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
31 lines (31 loc) · 1.31 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Healing Forest</title>
<style>
body {
padding: 0;
margin: 0;
cursor: pointer;
}
</style>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.4.1/p5.js" integrity="sha512-4P0ZJ49OMXe3jXT+EsEaq82eNwFeyYL81LeHGzGcEhowFbTqeQ80q+NEkgsE8tHPs6aCqvi7U+XWliAjDmT5Lg==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.4.1/addons/p5.sound.js" integrity="sha512-U2sgwrFhl+Tgx9iGH9h5Ba2WyIjyCes+D0prtIFw3a0V+/fkaeL5Cd/VjyPHno9kUPE1rnNhBGTyvtZsfJp0xg==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="js/main.js"></script>
<script src="js/ground.js"></script>
<script src="js/grass.js"></script>
<script src="js/rain.js"></script>
<script src="js/rocks.js"></script>
<script src="js/identity.js"></script>
<script src="js/trees.js"></script>
<script src="js/birds.js"></script>
<script src="js/ripples.js"></script>
<script src="js/hole.js"></script>
<script src="js/player.js"></script>
</head>
<body>
</body>
</html>