generated from skills/release-based-workflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (29 loc) · 789 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Alien Invasion</title>
<link rel="stylesheet" href="base.css" type="text/css" />
<link
href="http://fonts.googleapis.com/css?family=Bangers"
rel="stylesheet"
type="text/css"
/>
<meta
name="viewport"
content="width=device-width, user-scalable=0, minimum-scale=1.0, maximum-scale=1.0"
/>
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta
name="apple-mobile-web-app-status-bar-style"
content="black-translucent"
/>
</head>
<body>
<div id="container">
<canvas id="game" width="320" height="480"></canvas>
</div>
<script src="engine.js"></script>
<script src="game.js"></script>
</body>
</html>