-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
23 lines (23 loc) · 1.01 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
<!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="js/p5.min.js"></script>
<script src="js/p5.sound.min.js"></script>
<script src="js/ball.js"></script>
<script src="js/platform.js"></script>
<link rel="stylesheet" href="css/style.css">
<title>CM JavaScript Project</title>
</head>
<body>
<h1>P5.js ball game</h1>
<p>Arrows to move, jump off the platform to start</p>
<h2 id="playerTime">0 Seconds</h2>
<br>
<script src="js/script.js"></script>
<!-- SVG Waves from 'getwaves.io' -->
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="#0099ff" fill-opacity="1" d="M0,160L80,176C160,192,320,224,480,213.3C640,203,800,149,960,133.3C1120,117,1280,139,1360,149.3L1440,160L1440,320L1360,320C1280,320,1120,320,960,320C800,320,640,320,480,320C320,320,160,320,80,320L0,320Z"></path></svg>
</body>
</html>