-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (40 loc) · 1.04 KB
/
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
41
<!doctype html>
<html lang="en">
<head>
<title>Spiker!!!</title>
<meta
name="viewport"
content="viewport-fit=cover, width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"
/>
<meta name="format-detection" content="telephone=no" />
<meta name="msapplication-tap-highlight" content="no" />
<link rel="icon" type="image/x-icon" href="./assets/icon/favicon.ico" />
<style>
html,
body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
background: #000;
}
* {
padding: 0;
margin: 0;
}
#rotate {
display: none;
color: white;
justify-content: center;
align-items: center;
height: 100%;
}
</style>
<meta name="theme-color" content="#31d53d" />
</head>
<body>
<div id="rotate">orientation not supported, please rotate your device.</div>
<div id="game"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>