-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (38 loc) · 1.25 KB
/
Copy pathindex.html
File metadata and controls
39 lines (38 loc) · 1.25 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Twistris</title>
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<main class="app-shell">
<section class="board-wrap">
<div id="startScreen" class="start-screen">
<div class="start-copy" aria-hidden="true"></div>
<button id="startButton" class="start-button" type="button">Start</button>
</div>
<div class="board-overlay-top">
<div id="statusValue" class="status-chip">Build the square</div>
</div>
<div class="board-overlay-bottom">
<div id="currencyValue" class="currency-chip">Pulse charges 0</div>
</div>
<input
id="gameKeySink"
class="game-key-sink"
type="password"
inputmode="none"
autocomplete="off"
autocapitalize="off"
spellcheck="false"
aria-hidden="true"
tabindex="-1"
/>
<canvas id="game" width="800" height="800" tabindex="0" aria-label="Balance Stack prototype"></canvas>
</section>
</main>
<script type="module" src="./game.js"></script>
</body>
</html>