-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (40 loc) · 1.25 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
41
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Flappy Bird</title>
</head>
<body>
<h1>
FLAPPY BIRD
</h1>
</body>
<div id="sketch-holder">
<!-- Our sketch will go here! -->
</div>
<div id="lower-text">
<button id="restart-button">Try Again!</button>
<h2>
press 'j' to jump; press 'r' to try again
</h2>
<h3>choose bird color below</h3>
<form id="color-form">
<input type="radio" id="red" name="color" value="red" />
<label for="red">red</label>
<input type="radio" id="blue" name="color" value="blue" />
<label for="blue">blue</label>
<input type="radio" id="yellow" name="color" value="yellow" />
<label for="yellow">yellow</label>
</form>
</div>
<script src="libraries/p5.js"></script>
<script src="libraries/p5.dom.js"></script>
<script src="libraries/p5.sound.js"></script>
<script src="sketch.js"></script>
<script src="bird.js"></script>
<script src="pipe.js"></script>
<script src="score.js"></script>
<script src="base.js"></script>
<link rel="stylesheet" type="text/css" href="style.css" />
</html>