-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (44 loc) · 1.22 KB
/
index.html
File metadata and controls
46 lines (44 loc) · 1.22 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
40
41
42
43
44
45
46
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script type="text/javascript" src="js/jquery-3.2.1.min.js"></script>
<script type="text/javascript" src="js/preload.js"></script>
<script type="text/javascript" src="js/levelTools.js"></script>
<script type="text/javascript" src="js/engine.js"></script>
<script type="text/javascript" src="js/UI.js"></script>
<link rel="stylesheet" href="css/style.css">
<title>Candy Eater - a fun match 3 game!</title>
</head>
<body>
<h1>Candy Eater</h1>
<div id="level-status">
<div id="score-box">
</div>
<div id="progress">
<div id="bar">
</div>
</div>
</div>
<div id="game">
<div id="game-grid">
</div>
<div id="menu">
<div id='game-result'>
</div>
</div>
</div>
<div id="gem-upgrade-box">
<button id="help">help</button>
<p>Left till upgrade:</p>
</div>
<div class='preload'>
</div>
<audio id='music' src="sound/music.mp3" volume="0.0" loop></audio>
<button id='play-music'>
Music
</button>
<audio id='pop' src="sound/lick.mp3" preload></audio>
<audio id='bomb' src="sound/bomb.mp3" preload></audio>
</body>
</html>