-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (44 loc) · 2.09 KB
/
index.html
File metadata and controls
49 lines (44 loc) · 2.09 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
<!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>ROBOT ESCAPE</title>
<link rel="stylesheet" href="src/style.css" />
</head>
<body>
<div class="landing-page" id="landing-page">
<h1 class="main-title">ROBOT ESCAPE</h1>
<div class="main-controls-container">
<div class="rules-button-container">
<div class="rules-button" id="rules-button">RULES</div>
</div>
<div class="difficulty-button-container">
<div class="easy-button" id="easy-button">EASY</div>
<div class="medium-button" id="medium-button">MEDIUM</div>
<div class="hard-button" id="hard-button">2020</div>
</div>
</div>
<div class="start-button-container" id="start-button">
<h2 class="start-button">START</h2>
</div>
</div>
<div class="rules" id="rules">
<p>
<span class="bigger-text">Find</span> a way to <span class="bigger-text">escape</span> the room, but be careful: you may run out of time</br>
<span class="bigger-text">Move</span> with <span class="bigger-text">W A S D</span> or the <span class="bigger-text">ARROW KEYS</span>
<br />
<span class="bigger-text">Jump</span> with the <span class="bigger-text">SPACEBAR</span>
<br />
<span class="bigger-text">Interact</span> with objects using <span class="bigger-text">E</span>. Some can even be moved
<br />
<span class="bigger-text">Choose</span> the difficulty settings to change the number of hints and the time you'll get to escape the room
<br />
<span class="bigger-text">Enjoy!</span>
</p>
<div id="back-button">GO BACK</div>
</div>
<script type="module" src="src/index.js"></script>
</body>
</html>