-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlevel-three.html
61 lines (44 loc) · 1.96 KB
/
level-three.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!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">
<title>Find the Lost Lil Mushroom</title>
<!-- Stylesheet links -->
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Silkscreen:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>
<div class="gameBox">
<div class="cloud">
<h1>Find the Lost Lil Mushroom</h1>
<p>The little red mushroom is lost in the woods! Can you find the little red mushroom?</p>
<p> Click on a tree to look deeper into the forest!</p>
</div>
<a href="index.html"><input class="button" id="mainButton" type="button" value="MAIN MENU"></a>
<a href="#"><input class="button" id="nextButton" type="button" value="NEXT LEVEL"></a>
<h2>Lvl. 3</h2>
<span class="messageWon">You found the mushroom! :)</span>
<div class="treeBoxOne">
<img id="treeOne" src="tree.png" alt="tree">
<img id="treeTwo" src="tree.png" alt="tree">
<img id="treeThree" src="tree.png" alt="tree">
<img id="treeFour" src="tree.png" alt="tree">
<img id="treeFive" src="tree.png" alt="tree">
</div>
<img id="mushroomThree" src="mushroom.png" alt="mushroom">
<span class="wrongOne">Wrong mushroom :(</span>
<img id="blueMushroomOne" src="blue-mushroom.png" alt="mushroom">
<div class="grass">
</div>
</div>
<!-- <div class="musicIconBox">
<img id="musicOn" src="music-on.png" alt="music icon">
<img id="musicOff" src="music-off.png">
</div> -->
<script src="level-three-.js"></script>
</body>
</html>