-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
41 lines (35 loc) · 1.46 KB
/
index.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
<!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 | Menu</title>
<link rel="icon" type="image/png" href="assets/images/favicon.jpg" />
<!-- CSS -->
<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">SHOOTY<span class="text-green"> ROCKS</span></p>
<p class="game-story-text text-uppercase">A homage to Atari's classic 1979 arcade game, Asteroids.</p>
<p class="game-story-text text-uppercase">Your Mission: destroy all those pesky rocks</p>
<button class="start-button" onclick="location.href='game.html'" type="button">START</button>
<div class="menu-options">
<button onclick="location.href='how-to-play.html'" type="button">HOW TO PLAY</button>
<div></div>
<button onclick="location.href='high-score.html'" type="button">HIGH SCORE</button>
</div>
</div>
</div>
</nav>
</header>
</body>
</html>