-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·45 lines (33 loc) · 1.05 KB
/
index.html
File metadata and controls
executable file
·45 lines (33 loc) · 1.05 KB
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
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>UA Engine</title>
<meta name="HandheldFriendly" content="true" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<meta name="apple-mobile-web-app-title" content="UA Engine">
<meta name="description" content="Description Goes Here" />
<meta name="version" content="1.0.1" />
<meta property="og:title" content="UA Engine" />
<meta property="og:type" content="website" />
<meta property="og:description" content="Description Goes Here" />
<link rel="icon" type="image/png" href="icon.png" />
<link rel="shortcut icon" href="favicon.png" />
<link rel="apple-touch-icon-precomposed" href="icon.png"/>
<style>
* {
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<div id="gameBox">
</div>
<!-- Game -->
<!--<script src="js/game/game.min.js"></script>-->
<script src="js/game/game.js"></script>
<!-- GA -->
</body>
</html>