-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhow-to-play.html
79 lines (76 loc) · 3.3 KB
/
how-to-play.html
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
75
76
77
78
79
<!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">
<link rel="icon" href="assets/images/coffee.png" type="image/png">
<meta name="description" content="">
<meta name="keywords" content="">
<meta name="author" content="Retro Logic">
<title>How To Play</title>
<!-- CSS LINK -->>
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<header>
<a href="index.html"><h1>Office Invaders</h1></a>
<h2 id="game-subtitle">The game between the fat cats and the real world!</h2>
</header>
<main>
<div id="content">
<section>
<h3>Game Rules.</h3>
<p>
You have stormed the office to put an end to tyranny. Kill as many bosses as you can to survive!
</p>
<br>
<p>
There are different types of weapons generated during the game, they all give equal damage.
</p>
<br>
<ul>Use your keyboard to move and shoot:
<li>left arrow key ← to move to the left</li>
<li>right arrow key → to move to the right</li>
<li>arrow up key ↑ to shoot</li>
<li>Space Bar ↔ to Pause the game<li>
</ul>
<br>
<ul>Points value:
<li>Kill manager 2 points</li>
<li>Kill angry HR manager 3 points</li>
<li>Kill CEO in a ref chair 5 points</li>
</ul>
<br><p>For each 51 points go level up!</p>
<br>
<p>
You have 3 hearts ♥♥♥ try not to loose them.
</p>
<br>
<p>
You can win this!
</p>
<button id="return-btn"><a href="index.html"><i class="fas fa-arrow-left fa-lg"></i> Back</a></button>
</section>
</div>
<aside>
<hr>
<button><a href="storyline.html">Storyline</a></button>
<button><a href="how-to-play.html">How to play</a></button>
<button><a href="credits.html">Credits</a></button>
<button id="play-btn"><a href="game.html">Play!</a></button>
</aside>
</main>
<!--footer for social media links-->
<footer>
<div id="socials">
<a href="https://www.youtube.com" aria-label="Go to Facebook page" target="_blank" rel="noopener"><i class="fab fa-youtube-square"></i></a>
<a href="http://facebook.com" aria-label="Go to Facebook page" target="_blank" rel="noopener"><i class="fab fa-facebook"></i></a>
<a href="http://github.com" aria-label="Go to GitHub page" target="_blank" rel="noopener"><i class="fab fa-github"></i></a>
<a href="http://linkedin.com" aria-label="Go to LinkedIn page" target="_blank" rel="noopener"><i class="fab fa-linkedin"></i></a>
</div>
</footer>
<!-- font awesome script-->
<script src="https://kit.fontawesome.com/328aade986.js" crossorigin="anonymous"></script>
</body>
</html>