forked from AdvancedCSS2023/assignment-2---css-games-group_4
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstage-four.html
More file actions
44 lines (43 loc) · 1.63 KB
/
stage-four.html
File metadata and controls
44 lines (43 loc) · 1.63 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
<!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>CSS - Game | stage Four</title>
<link rel="stylesheet" href="./styles/index.css" />
</head>
<body class="stage__four--body">
<div class="ball-container">
<input type="checkbox" class="ball-seven stage-four" />
<input type="checkbox" class="ball-three stage-four" />
<input type="checkbox" class="ball-nine stage-four" />
<input type="checkbox" class="ball-eleven stage-four" />
<input type="checkbox" class="ball-six stage-four" />
<input type="checkbox" class="ball-ten stage-four" />
<input type="checkbox" class="ball-five stage-four" />
<input type="checkbox" class="ball-one stage-four" />
<input type="checkbox" class="ball-eight stage-four" />
<input type="checkbox" class="ball-two stage-four" />
<input type="checkbox" class="ball-four stage-four" />
<div class="game__info--win-screen">
<h2>YOU WON!</h2>
<img
src="./images/clapping-shia.gif"
alt="image of Shia Laboeuf clapping"
/>
<div class="game__info--next-stage">
<a href="./index.html">PLAY AGAIN!</a>
</div>
</div>
</div>
<div class="game__info--container-stage-two-four">
<h1>STAGE FOUR | FINAL STAGE</h1>
<h2>YOU HAVE 22 SECONDS!</h2>
</div>
<div class="game__info--game-over-stage-four">
<h2>GAME OVER, YOU FAILED</h2>
<p>Press F5 to try again</p>
</div>
</body>
</html>