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-two.html
More file actions
41 lines (40 loc) · 1.52 KB
/
stage-two.html
File metadata and controls
41 lines (40 loc) · 1.52 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
<!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 Two</title>
<link rel="stylesheet" href="./styles/index.css" />
</head>
<body class="stage__two--body">
<div class="ball-container">
<input type="checkbox" class="ball-three stage-two" />
<input type="checkbox" class="ball-eleven stage-two" />
<input type="checkbox" class="ball-four stage-two" />
<input type="checkbox" class="ball-two stage-two" />
<input type="checkbox" class="ball-six stage-two" />
<input type="checkbox" class="ball-eight stage-two" />
<input type="checkbox" class="ball-ten stage-two" />
<input type="checkbox" class="ball-seven stage-two" />
<input type="checkbox" class="ball-one stage-two" />
<input type="checkbox" class="ball-five stage-two" />
<input type="checkbox" class="ball-nine stage-two" />
<div class="game__info--win-screen">
<h2>YOU WON</h2>
<p>...nice</p>
<div class="game__info--next-stage">
<a href="./stage-three.html">STAGE THREE!</a>
</div>
</div>
</div>
<div class="game__info--container-stage-two-four">
<h1>STAGE TWO</h1>
<h2>YOU HAVE 18 SECONDS!</h2>
</div>
<div class="game__info--game-over-stage-two">
<h2>GAME OVER, YOU FAILED</h2>
<p>Press F5 to try again</p>
</div>
</body>
</html>