-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathindex.html
40 lines (38 loc) · 1.5 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 name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Flappy Bird game with browser windows</title>
<link href="https://fonts.googleapis.com/css?family=Bangers&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<section class="outer-container">
<div class="score">0</div>
<main>
<h1>Flappy Bird</h1>
<div class="animation">
<div class="bird-container">
<div class="bird"></div>
</div>
<p class="space-bar">Space</p>
</div>
<p>Play Flappy Bird with browser windows</p>
<div class="buttons">
<button class="play">Play</button>
<button>Q<span>(uit)</span></button>
<button>R<span>(estart)</span></button>
</div>
</main>
<div id="mobile-message">
<p>Hhmm... It looks like you're viewing this project on a mobile phone. As this game is played with browser windows, please check it out on a desktop!</p>
</div>
</section>
<footer>
<p>Made over the weekend by <a href="https://twitter.com/devdevcharlie" target="_blank">Charlie Gerard</a></p>
</footer>
<script src="index.js"></script>
</body>
</html>