-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (36 loc) · 1.21 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
<!DOCTYPE html>
<html lang="en" onclick="jump()">
<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>Flapping Bird Game</title>
<link rel="icon" type="image/x-icon" href="https://img.icons8.com/avantgarde/100/bird.png">
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div id="holder">
<div id="modal">
<p id="game-title">Flappy Bird Game</p>
<span>Fly the bird as far as you can without hitting a wood</span
>
<button id="start" onclick="startGame()">Start</button>
<button id="restart" onClick="window.location.reload(true)">
Restart
</button>
</div>
<div id="scoreholder">
Score:
<span id="score">0</span>
</div>
<div id="game">
<div id="block"></div>
<div id="hole"></div>
<div class="gamestartbg" id="character">
<img id="character-image" />
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>