-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
26 lines (25 loc) · 1 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image" href="./assets/vault x.jpg" />
<title>Flappy Bird</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" />
<link rel="stylesheet" href="style.css"/>
<script src="script.js"></script>
</head>
<body>
<div id="container">
<div style="text-align: left;
margin-top: -10px;
font-size: 30px; "><a href=""><i style="color:black;" class="fas fa-home home-icon"></i></a></div>
<canvas id="canvas"></canvas>
<div id="instructions">
<h2>How To Play</h2>
<h3>Press Space or ArrowUp key to help the bird fly</h3>
<h3>Press Space or ArrowUp key to Restart</h3>
</div>
</div>
</body>
</html>