-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
39 lines (38 loc) · 2.69 KB
/
about.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
<!doctype html>
<html>
<head>
<title>Speedy</title>
<link rel="shortcut icon" href="assets/images/favicon.ico" type="image/x-icon">
<!--BOOTSTRAP DEPENDENCIES-->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
</head>
<body background="assets/images/bgimage.jpg" style="background-size: cover;">
<!--ABOUT THE GAME-->
<div class="container" style="margin-top:10%;">
<div class="row">
<div class="col col-md-6 offset-md-3">
<div class="card text-white bg-dark mb-3">
<div class="card-header" align="center" style="font-size:150%;">About</div>
<div class="card-body">
<h5 class="card-title">Speedy is a game that tests your speed.</h5>
<p class="card-text">
<h5>Instructions</h5>
<ul>
<li>The player needs to click on the shapes that appear on the page to score points.</li>
<li>The points scored per click increase with level.</li>
<li>In each level the speed at which the shapes appear increases.</li>
<li>The player gets 3 lives in each level.</li>
<li>The player loses one life when he/she misses a shape.</li>
<li>Now you may click back and then click at the logo to proceed.</li>
</ul>
<div align="center"><a href="index.html"><h5><<Back</h5></a></div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>