-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (23 loc) · 926 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Effective JavaScript: Frogger</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<h1>Frogger Arcade Game Clone</h1>
<p>In this game, you must cross the street avoiding the evil man-eating ladybugs and reach the water side.</p>
<p>You can navigate, using the <b>arrow keys ← ↑ → ↓</b> on your keyboard. To change to a different character sprite, press "C".</p>
<p>This game has 5 levels, after passing level 5, the game ends. Beware, more ladybugs are waiting to eat you with each level and they become faster!</p>
</header>
<div class="level"></div>
<footer>
<p class="footer"><em>Game Design and Functionality by Kerstin Wagner</em></p>
</footer>
<script src="js/resources.js"></script>
<script src="js/app.js"></script>
<script src="js/engine.js"></script>
</body>
</html>