-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
22 lines (22 loc) · 809 Bytes
/
Copy pathindex.html
File metadata and controls
22 lines (22 loc) · 809 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta
name="apple-mobile-web-app-status-bar-style"
content="black-translucent"
/>
<meta name="viewport" content="user-scalable=no" />
<link rel="icon" href="icon/icon.png" type="image/png" />
<link rel="apple-touch-icon" href="icon/icon.png" />
<link rel="stylesheet" type="text/css" href="fonts/gamefont.css" />
<title>Dragon Slayers Demo</title>
</head>
<body style="background-color: black">
<script type="text/javascript" src="js/plugins.js"></script>
<script type="text/javascript">
var game = require("./js/main");
</script>
</body>
</html>