-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·31 lines (30 loc) · 1.11 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Frogdacity - Jump and Run</title>
<link rel="icon" href="images/Favicon.png" type="image/x-icon">
<link rel="stylesheet" href="css/style.css">
<link href="https://fonts.googleapis.com/css?family=Fascinate+Inline" rel="stylesheet">
</head>
<body>
<img src="images/Logo.svg" alt="Frogdacity Logo">
<div id="openModal" class="modalDialog">
<div>
<a href="#close" title="Close" class="close">X</a>
<h2>WELCOME TO FROGDACITY!</h2>
<p>Use your keyboard up, down, left and right arrows to move the player.</p>
<p>Safely reaching the water gives you 1 point, but don't get eaten by a bug!</p>
</div>
</div>
<div class="stats">
<h2 class="lvl">Level: <span class="level">0</span></h2>
<h2 class="scr">Score: <span class="score">0</span></h2>
<h2 class="fai">Fails: <span class="fails">0</span></h2>
</div>
<script src="js/jquery-1.12.2.js"></script>
<script src="js/resources.js"></script>
<script src="js/app.js"></script>
<script src="js/engine.js"></script>
</body>
</html>