-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (26 loc) · 828 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
<!doctype html>
<html lang="en">
<head>
<meta http-equiv="pragma" content="no-cache" />
<meta http-equiv="expires" content="0" />
<meta
http-equiv="cache-control"
content="no-cache, no-store, must-revalidate"
/>
<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>minigames</title>
</head>
<body>
<div class="take-up-viewport shelf-flex">
<div id="info" class="flex-row-grow-and-shrink displayNone">
<div id="log"></div>
</div>
<div id="game-wrapper" class="flex-row-grow-and-shrink">
<canvas id="game" class="flex-end"></canvas>
</div>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>