-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.html
55 lines (51 loc) · 2.71 KB
/
home.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>COMETS</title>
<!-- Jquery import -->
<script
src="https://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<!-- CSS import -->
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="background-image"></div>
<div class="container homepage">
<h1 class='title'>AVOID THE COMETS</h1>
<div class="row odd-row">
<div class="col-md-7 col-md-push-5">
<p>Avoid the comets for as long as you can to get the high score.</p>
<p>Shoot fireballs to clear the path in front of you.</p>
<a href="index.html">PLAY</a>
<div class="col-md-5 col-md-pull-7">
<img class="img-responsive game-image" src="images/game-screenshot.png" alt="image of the game" >
</div>
</div>
<div class="row even-row">
<div class="col-md-7">
<h1>Controls</h1>
<p>The controls are W A S D, to move up down left and right and SPACE to shoot fireballs (fireballs need to recharge after a use). The aim of the game is to avoid the falling comets and to get as high a score as possible. </p>
<p>The score increases for each block that hits the bottom of the screen so the longer you survive the higher your score will be.</p>
<p>Difficulty also increases in relation to your high score meaning you score points faster the longer you live but it also becomes much harder to survive.</p>
</div>
<div class="col-md-5">
<img class="img-responsive game-image" src="images/WASD.JPG" alt="image of the keyboard controls" >
</div>
</div>
</div>
<footer class="footer">
<div class="container">
<span class="text-muted">© 2018 Sykander Gul</span>
</div>
</footer>
</body>
</html>