-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (30 loc) · 1.4 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
<!DOCTYPE HTML>
<html>
<head>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<meta content="utf-8" http-equiv="encoding">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="mobile-web-app-capable" content="yes">
<meta name="viewport" content="width=device-width,
height=device-height,
initial-scale=1.0,
maximum-scale=1,
user-scalable=no" />
<title>Ringvibe</title>
<!-- How to get an icon to display -->
<link rel="apple-touch-icon" href="ringapp.png"/>
<link rel="icon" href="ringicon.png">
<!-- This is for Android icons - 196x196 is standard -->
<!-- <link rel="shortcut icon" sizes="196x196" href="icon-196x196.png"> -->
</head>
<body oncontextmenu="return false;" >
<!--<canvas id="gamecanvas" width="300" height="300" style="border: 1px solid #d3d3d3;"></canvas>-->
<script type="module" src="./engine/screenstate.test.js"></script>
<script type="module" src="./engine/bc/input.test.js"></script>
<script type="module" src="./engine/js/input.test.js"></script>
<script type="module">
import { boot } from "./starter.js"
boot()
</script>
</body>
</html>