-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (34 loc) · 1.81 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
29
30
31
32
33
34
35
<!doctype html>
<html>
<head>
<title>HeartBreaker: Yet Another Space Invaders Clone</title>
<meta name="description" content="HeartBreaker: Yet Another Space Invaders Clone">
<meta name="viewport" content="width=device-width, user-scalable=no">
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@katpadi" />
<meta name="twitter:creator" content="@katpadi" />
<meta property="og:url" content="http://stuff.katpadi.ph" />
<meta property="og:title" content="HeartBreaker: Yet Another Space Invaders Clone" />
<meta property="og:description" content="It's a game built using Phaser. It's not original. It's nothing amazing. It's a space invaders clone with a twist." />
<meta property="og:image" content="https://i2.wp.com/blog.katpadi.ph/wp-content/uploads/2017/10/50.png" />
<meta property="og:type" content="website" />
<meta property="og:title" content="HeartBreaker: Yet Another Space Invaders Clone" />
<meta property="og:description" content="It's a game built using Phaser. It's not original. It's nothing amazing. It's a space invaders clone with a twist." />
<meta property="og:image" content="https://i2.wp.com/blog.katpadi.ph/wp-content/uploads/2017/10/50.png" />
<meta name="apple-mobile-web-app-capable" content="yes">
<link rel="shortcut icon" href="favi.ico" type="image/x-icon" />
<style>
body {
background: #000;
margin: 0;
padding: 0;
}
#screen { display : block; margin : auto; }
</style>
</head>
<body>
<div id="screen"></div>
<script src="phaser.min.js"></script>
<script src="heartbreaker.js"></script>
</body>
</html>