-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (29 loc) · 1011 Bytes
/
index.html
File metadata and controls
40 lines (29 loc) · 1011 Bytes
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
40
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Color Blast</title>
<link rel="stylesheet" href="style.css">
<script src="https://code.jquery.com/jquery-3.6.4.min.js"></script>
<script src="script.js"></script>
</head>
<body>
<div class="game-wrap">
<div class="board-wrap">
<div id="board" aria-hidden="false"></div>
<div class="combo-badge" id="combo" style="display:none">Combo x1</div>
</div>
<aside class="hud">
<h1>Modern Candy Crush</h1>
<div class="score" id="score">0</div>
<div class="controls">
<button id="btnRestart" class="btn">Restart</button>
<button id="btnHint" class="btn muted">Hint</button>
</div>
<hr style="margin:12px 0;border:none;border-top:1px solid rgba(255,255,255,0.04)">
<div style="font-size:13px;color:rgba(255,255,255,0.6)">Tips: Swipe on mobile. Matching 4 creates a striped candy, matching 5 creates a color bomb.</div>
</aside>
</div>
</body>
</html>