-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathindex-electron.html
28 lines (23 loc) · 923 Bytes
/
index-electron.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- EARLY -->
<meta http-equiv="Content-Type" content="text/html"/>
<meta charset="utf-8" />
<title>Golden Sun Engine - HTML5</title>
<!-- MISC -->
<meta name="background-color" content="#000" />
<meta name="theme-color" content="#fff" />
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
<!-- ICONS -->
<link rel="shortcut icon" type="image/x-icon" href="static/favicon.ico" />
<!-- LIBRARIES -->
<link rel="stylesheet" href="static/styles.css">
<script type="text/javascript" src="static/phaser.js"></script>
<script src="dist/bundle.js"></script>
</head>
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<body class="electron">
<div id="game"></div>
</body>
</html>