-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (32 loc) · 1.08 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Effective JavaScript: Frogger</title>
<link href="https://fonts.googleapis.com/css?family=Stalinist One" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<h1>Frogger Clone</h1>
<!--div for heart and gem counter-->
<div id="counter" class="counter">
<div id="hearts" class="items">
<img src="images/Heart-Count.png" alt="hearts">
<span id="lives" class="lives"></span>
</div>
<div id="Gems" class="items">
<img src="images/Gem-Blue-Count.png" alt="gems">
<span id="gems" class="gems"></span>
</div>
</div>
<!--button to choose easy difficulty-->
<button id="easy" class="easy">Easy</button>
<!--button to choose medium difficulty-->
<button id="medium" class="medium">Medium</button>
<!--button to choose hard difficulty-->
<button id="hard" class="hard">Hard</button>
<script src="js/resources.js"></script>
<script src="js/app.js"></script>
<script src="js/engine.js"></script>
</body>
</html>