-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
29 lines (29 loc) · 938 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Brave Chicky Dice Adventure</title>
</head>
<body>
<div class="bg-pico-1 w-screen h-screen center-element">
<div class="bg-pico-29 w-full max-h-screen relative aspect-video">
<div id="screen" class="size-full">
<canvas id="canvas"></canvas>
<div
id="fade"
class="bg-pico-1 size-full absolute-top-left opacity-0 duration-500"
></div>
</div>
<div id="hud_window"></div>
<div
id="command_window"
class="size-full center-element absolute-top-left"
></div>
<div id="preload_window"></div>
</div>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>