-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (49 loc) · 2.21 KB
/
index.html
File metadata and controls
54 lines (49 loc) · 2.21 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="./styles/styles.css" />
<link rel="icon" type="image/x-icon" href="images/oneup.png">
<link rel="preconnect" href="https://fonts.googleapis.com">
<style>
@import url('https://fonts.googleapis.com/css2?family=Montserrat&family=Roboto:wght@100&display=swap');
</style>
<title>Starry Sky</title>
</head>
<body class="loading-screen-background">
<div class="loading-screen">
<div class="logo">
<img src="./images/logo.png" alt="">
</div>
<form class="play" action="./game-menu.html">
<button id="play-button" type="submit" value="Go to Google">play!</button>
</form>
<div class="instructions">
<h3>Instructions</h3>
<p>Click on the icons to earn points before they disappear from the screen.</p>
<p>If you don't click on them on time, you'll lose lives!</p>
<p>If there are 6 coins on screen, game over!</p>
<div class="icons-div">
<div>
<img src="./images/coin.png" alt="Coin Icon" class="coin">
<p class="green">+1 point</p>
</div>
<div>
<img src="./images/bunny.png" alt="Bunny Icon" class="">
<p class="green">+2 points</p>
</div>
<div>
<img src="./images/bug.png" alt="Bug Icon" class="bug">
<p class="green">+3 points</p>
</div>
<div>
<img src="./images/ironhack-logo.png" alt="Ironhack logo" class="iron">
<p class="red">-1 life</p>
</div>
</div>
</div>
</div>
<script type="text/javascript" src="js/script.js"></script>
</body>