-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (25 loc) · 851 Bytes
/
index.html
File metadata and controls
28 lines (25 loc) · 851 Bytes
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>
<meta charset="UTF-8">
<title>🪐 WEIRD GRAVITY SPACE GAME</title>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta http-equiv="cleartype" content="on">
<style>
html,
body,
canvas {
margin: 0 !important;
padding: 0 !important;
overflow: hidden !important;
}
</style>
</head>
<body>
<div id="content"></div>
<script src="https://cdn.jsdelivr.net/npm/phaser@3.24.1/dist/phaser.min.js" integrity="sha256-Ybs8XdFCLfrdxwPk1rFPS6+ZoShn0uppP6CwZBSJKYk=" crossorigin="anonymous"></script>
<script src="app.bundle.js"></script>
</body>
</html>