-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (39 loc) · 831 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
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="user-scalable=0, initial-scale=1, minimum-scale=1, maximum-scale=1, width=device-width, minimal-ui=1"
/>
<title>Basic RPG</title>
<style>
* {
margin: 0;
padding: 0;
}
</style>
<style media="screen" type="text/css">
@font-face {
font-family: gameFont;
src: url("assets/fonts/upheavtt.ttf");
font-weight: 400;
font-weight: normal;
}
</style>
</head>
<body>
<div id="phaser-game"></div>
<div
style="
font-family: gameFont;
position: absolute;
left: -1000px;
visibility: hidden;
"
>
.
</div>
<script src="js/index.js"></script>
</body>
</html>