-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (25 loc) · 1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./src/style.css">
<title>Avoid the bush</title>
</head>
<body>
<section class="game-board">
<div class="purpose">
<h2>Avoid the bush</h2>
<p>The goal in this game is to keep the frog alive, avoiding the bush!</p>
<p>Press any key to make the frog jump.</p>
</div>
<img src="./src/images/clouds.png" class="cloud" alt="clouds in the sky">
<img src="./src/images/clouds.png" class="clouds" alt="clouds in the sky">
<img src="./src/images/clouds.png" class="cloudly" alt="clouds in the sky">
<img src="./src/images/frog.gif" class="animal" alt="frog in motion">
<img src="./src/images/bush.png" class="bush" alt="bush">
</section>
<script src="./src/run.js"></script>
</body>
</html>