-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (34 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Set - Card Game</title>
</head>
<body>
<script type="module" src="/src/main.ts"></script>
<div id="game-container">
<div id="top-status" class="status-panel">
<div></div>
<div class="set-count">
<img src="/icons/set.svg" width="28" />
<span id="set-count-text">0</span>
</div>
<img
src="/icons/lightbulb-on.svg"
height="32"
id="hint-button"
class="button"
/>
<div id="hint-box" style="display: none"></div>
</div>
<div id="canvas-container"></div>
<div id="bottom-status" class="status-panel"></div>
<div id="game-over-frame" class="hidden">
<div style="margin-bottom: 12px"><b>Game Completed!</b></div>
<div id="stats-text"></div>
<div id="play-again-button" class="button">Play Again</div>
</div>
</div>
</body>
</html>