-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplanes.html
More file actions
33 lines (29 loc) · 931 Bytes
/
Copy pathplanes.html
File metadata and controls
33 lines (29 loc) · 931 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
33
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Toppest Gun</title>
<script src = "phaser.min.js"></script>
<script type = "text/javascript" src = "Scene1.js"></script>
<script type = "text/javascript" src = "Scene2.js"></script>
<script type = "text/javascript" src = "planes.js"></script>
<script type = "text/javascript" src = "bullet.js"></script>
<script type = "text/javascript" src = "explosion.js"></script>
<style type="text/css">
body {
font-family: Arial;
font-size: 15;
margin: 0;
background-color: black;
color: white;
}
</style>
</head>
<body>
<center></center>
</div>
<center>Move using the arrow keys. Fire using space. If a plane gets away, you lose points.</center>
<div style = "height: 97vh;" class = "parent" id = 'parent'></div>
</body>
</html>