-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (31 loc) · 1.15 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
35
36
37
38
39
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Effective JavaScript: Frogger</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<section id="toolbar">
<section id="character" class="toolbar-items" title="Click To Change The Character ">
<img id="character-image" src="images/char-boy.png">
</section>
<section id="gems" class="toolbar-items" title="Click To Change The Collective">
<img id="gems-image" src="images/star.png">
</section>
<section id="score" class="toolbar-items">
<span id="score-span" title="Your Score">0</span>
<span id="bonus-span" title="Total Collectives">0</span>
</section>
<section id="life" class="toolbar-items">
<span id="life-span" title="Life">0</span>
<span id="buy-life-span">
<img id="buy-life" src="images/life-icon.png" title="Buy life for 5 collectives">
</span>
</section>
</section>
<script src="js/resources.js"></script>
<script src="js/app.js"></script>
<script src="js/engine.js"></script>
</body>
</html>