-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhow-to-play.html
52 lines (46 loc) · 1.92 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- META TAGS -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="An Asteroids clone" />
<!-- TITLE | FAVICON -->
<title>Shooty Rocks | How To Play</title>
<link rel="icon" type="image/png" href="assets/images/favicon.jpg" />
<!-- CSS -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.1/css/all.css"
integrity="sha384-gfdkjb5BdAXd+lj+gudLWI+BXq4IuLW5IT+brZEZsLFm++aCMlF1V92rMkPaX4PP" crossorigin="anonymous">
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<!-- HEADER -->
<header>
<!-- NAV -->
<nav class="container">
<div class="header-bg-image text-white">
<div class="header-text">
<p class="title-text">HOW TO PLAY</p>
<p class="how-to-play-text">
<span class="text-yellow">DESKTOP: </span>
Use the <i class="fas fa-arrow-left"></i> and
<i class="fas fa-arrow-right"></i>
keyboard keys to rotate your ship. Push the
<i class="fas fa-arrow-up"></i> arrow key to thrust. Press the
<span class="text-underline">space</span> key to fire.
</p>
<p class="how-to-play-text">
<span class="text-yellow">MOBILE: </span>Use the touch screen buttons provided.
</p>
<div></div>
<div class="menu-options">
<button class="menu-options-how" onclick="location.href='index.html'"
type="button">MENU
</button>
</div>
</div>
</div>
</nav>
</header>
</body>
</html>