-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (73 loc) · 2.77 KB
/
index.html
File metadata and controls
74 lines (73 loc) · 2.77 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!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 One</title>
<link rel="stylesheet" href="./styles/index.css" />
</head>
<body class="stage__one--body">
<div class="ball-container">
<input type="checkbox" class="ball-five stage-one" />
<input type="checkbox" class="ball-one stage-one" />
<input type="checkbox" class="ball-seven stage-one" />
<input type="checkbox" class="ball-three stage-one" />
<input type="checkbox" class="ball-eight stage-one" />
<input type="checkbox" class="ball-eleven stage-one" />
<input type="checkbox" class="ball-two stage-one" />
<input type="checkbox" class="ball-six stage-one" />
<input type="checkbox" class="ball-nine stage-one" />
<input type="checkbox" class="ball-ten stage-one" />
<input type="checkbox" class="ball-four stage-one" />
<div class="game__info--win-screen">
<h2>YOU WON</h2>
<p>...nice</p>
<div class="game__info--next-stage">
<a href="./stage-two.html">STAGE TWO!</a>
</div>
</div>
</div>
<input type="checkbox" id="start-game" />
<input type="checkbox" id="game-rules" />
<input type="checkbox" id="about-game" />
<label for="start-game" id="start-game-button" class="menu-label"
>Start Game</label
>
<label for="game-rules" id="game-rules-button" class="menu-label"
>How to play</label
>
<label for="about-game" id="about-game-button" class="menu-label"
>About the game</label
>
<label for="game-rules" id="game-rules-close" class="menu-label-close"
>Close</label
>
<label for="about-game" id="about-game-close" class="menu-label-close"
>Close</label
>
<div class="game__info game__info--container">
<h1>POP ALL THE BALL'S BEFORE THE TIME RUNS OUT</h1>
<h2>YOU HAVE 20 SECONDS!</h2>
</div>
<div class="game__info--game-over">
<h2>GAME OVER, YOU FAILED</h2>
<p>Press F5 to try again</p>
</div>
<div class="game__info--start-game"></div>
<div class="game__info--rules">
<h2>How to play</h2>
<p>Click on each of the moving balls before the time runs out.</p>
<p>Good Luck!</p>
<p>PS, press F11(fullscreen) for the best gaming experience. A mouse is also recommended ;-)</p>
</div>
<div class="game__info--about-game">
<h2>About this game</h2>
<p>
This is a game developed by students at NTNU as part of the Avanced CSS
course. Our goal with this project is to enhance our proficiency in Git
and collaborate using GitHub.
</p>
</div>
</body>
</html>