forked from MakingBrowserGames/SmurfsGame
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (40 loc) · 2.21 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
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html>
<head>
<title>Find The Smurfs</title>
<link href="https://fonts.cdnfonts.com/css/grobold" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<main>
<header>
<div>
<button class="found">0</button>
<button class="reset">↺</button>
<button class="help">?</button>
</div>
<h1>Find The Smurfs</h1>
<div>
<img src="images/lives2.png" id="heart1" class="lives">
<img src="images/lives2.png" id="heart2" class="lives">
<img src="images/lives2.png" id="heart3" class="lives">
</div>
</header>
<h4>Click around the village to find the 6 hidden Smurfs.<br><br>But BE WARE!<br><br>Azrael is on the watch!<br>If you run into him 3 times,<br>Game Over!<br><button class="start">Start</button></h4>
<section>
<div><img src="images/smurf.png" alt="Smurf" id="regSmurf" class="smurf"></div>
<div><img src="images/Smurfette.png" alt="Smurfette" id="smurfette" class="smurf"></div>
<div><img src="images/papaSmurf.png" alt="Papa Smurf" id="papaSmurf" class="smurf"></div>
<div><img src="images/brainySmurf.png" alt="Brainy Smurf" id="brainySmurf" class="smurf"></div>
<div><img src="images/handySmurf.png" alt="Handy Smurf" id="handySmurf" class="smurf"></div>
<div><img src="images/vanitySmurf.png" alt="Vanity Smurf" id="vanitySmurf" class="smurf"></div>
<div><img src="images/Azrael.png" alt="Azrael" id="azrael1" class="azrael"></div>
<div><img src="images/Azrael.png" alt="Azrael" id="azrael2" class="azrael"></div>
<div><img src="images/Azrael.png" alt="Azrael" id="azrael3" class="azrael"></div>
<div><img src="images/Gargamel_SV.gif" al="Gargamel" id="gargamel"></div>
</section>
</main>
<script type="text/javascript" src="main.js"></script>
<!-- <script type="text/javascript" src="server.js"></script> -->
</body>
</html>