-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgame.html
More file actions
34 lines (30 loc) · 1.19 KB
/
Copy pathgame.html
File metadata and controls
34 lines (30 loc) · 1.19 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
<!doctype html>
<html lang="vi">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>ColorCount — Chơi</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<main class="container">
<header class="topbar card">
<a href="index.html" class="small-link">← Trang chủ</a>
<div id="progress" class="progress">Level • 0 / 0</div>
</header>
<section class="game-area card" id="game-area" role="main">
<div id="items" class="items-grid" aria-live="polite"></div>
<div id="choices" class="choices" aria-label="Lựa chọn"></div>
<div id="status" class="status" aria-live="assertive"></div>
</section>
<section class="controls-bottom center">
<button id="btn-restart" class="btn" style="display:none">🔄 Chơi lại</button>
<button id="btn-next" class="btn btn-next" style="display:none">➡ Tiếp</button>
<button id="btn-next-level" class="btn btn-level2" style="display:none">➡ Sang Level tiếp</button>
</section>
</main>
<script src="js/data.js"></script>
<script src="js/ui.js"></script>
<script src="js/game.js"></script>
</body>
</html>