-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (26 loc) · 806 Bytes
/
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
<!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">
<link rel="stylesheet" href="style.css">
<title>Flappy Bird</title>
</head>
<body>
<div id="end-menu">
<h1>Game-over!</h1>
<p> Score: <span id="end-score"></span></p>
<p> Best: <span id="best-score"></span></p>
<button id="restart-button">Restart</button>
</div>
<div id="game-container">
<canvas id="game-canvas" width="400" height="600"></canvas>
<div id="score-display">0</div>
</div>
<script src="game.js"></script>
</body>
</html>
<h1> That's it! Hope you enjoyed the simple Flappy Bird implementation!
Let me know!
</h1>