-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
20 lines (20 loc) · 803 Bytes
/
Copy pathindex.html
File metadata and controls
20 lines (20 loc) · 803 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html>
<head>
<title>Flappy Bird</title>
<link href="https://fonts.googleapis.com/css?family=Press+Start+2P&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<meta name="viewport" content="width=device-width, user-scalable=no">
<meta name="theme-color" content="#121212">
<style>
body {width:400px!important;height:700px!important;}
</style>
</head>
<body>
<h1>Flappy Bird</h1>
<canvas id="canvas" width="288" height="512"></canvas>
<button type="button" name="button" class="red-button">FLY</button>
<h4 style="color: wheat;">Made with ❤️ by Mihir Sachdeva</h4>
<script src="flappyBird.js"></script>
</body>
</html>