-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (29 loc) · 764 Bytes
/
Copy pathindex.html
File metadata and controls
32 lines (29 loc) · 764 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>Flappy Bird Clone</title>
<script type="text/javascript" src="phaser.min.js"></script>
<script type="text/javascript" src="game.min.js"></script>
</head>
<style>
body {
font-family: Arial, sans-serif;
}
#gameDiv {
position: absolute;
width: 400px; height: 490px;
margin-left: -200px;
margin-top: -245px;
left: 50%; top: 50%;
border: 1px solid black;
}
p {
text-align: center;
}
</style>
<body>
<p><strong>Controls</strong>: Spacebar to jump</p>
<div id="gameDiv"></div>
</body>
</html>