-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (37 loc) · 1.47 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
36
37
38
39
40
<!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" />
<script src="https://cdn.jsdelivr.net/npm/[email protected]/lib/p5.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.4.1/addons/p5.sound.min.js"></script>
<link rel="stylesheet" href="style.css" />
<title>Climbing Game</title>
</head>
<body>
<h1>The best view comes after the hardest climb!</h1>
<div id="canvas"></div>
<footer>
<a href="https://www.vecteezy.com/">Graphics vecteezy.com</a>
<span> | </span>
<a href="https://unsplash.com/">Background unsplash.com</a>
<span> | </span>
<a href="https://mixkit.co/">Collision and Game Over Sounds mixkit.co</a>
<span> | </span>
<a href="http://www.soundboard.com/">Victory Sound soundboard.com</a>
</footer>
<script src="src/constants.js"></script>
<script src="src/background.js"></script>
<script src="src/rocks.js"></script>
<script src="src/helmet.js"></script>
<script src="src/safety-equipment.js"></script>
<script src="src/granola-bar.js"></script>
<script src="src/bolts.js"></script>
<script src="src/player.js"></script>
<script src="src/display-stats.js"></script>
<script src="src/screens.js"></script>
<script src="src/game.js"></script>
<script src="src/main.js"></script>
</body>
</html>