-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
28 lines (28 loc) · 1.22 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<script src="app.js" charset="UTF-8"></script>
<title>Flappy Bird</title>
</head>
<header>Welcome to Flappy Bird</header>
<body>
<div class="game-container">
<div class="sky">
<div class="bird"></div>
<div class="ground"></div>
</div>
</div>
<div class="guide-container" style="padding-top: 700px;">
<h2>How to Play Flappy Bird</h2>
<p>To control the bird on desktops and laptops, simply <strong>tap the up arrow key</strong> on your keyboard.</p>
<p>To control the bird on mobile devices or touch devices, simply <strong>tap anywhere on the screen</strong>.</p>
<p>The goal is to fly through the gaps between the pipes without touching them. Each time you pass a pipe, you'll earn a point.</p>
</div>
<footer>
Flappy Bird Game by <a href="https://github.com/bhanusingh008">bhanusingh008/</a> | All rights reserved.
</footer>
</body>
</html>