-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAbout.html
87 lines (77 loc) · 2.23 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
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
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Space About</title>
<link rel="icon" href="https://s3-us-west-2.amazonaws.com/www.danielwebsite.com/Icon.png">
<style media="screen">
@font-face {
font-family: "Commodore";
src: url("gameFont1.ttf");
}
@font-face {
font-family: "Commodore2";
src: url("gameFont2.ttf");
}
.title1{
text-align: center;
font-family:"Commodore";
color: white;
font-weight: normal;
}
.title2{
font-family:"Commodore2";
color: white;
font-weight: normal;
}
body{
background-color: black;
}
#body-div{
width: 700px;
height: 475px;
border: 5px solid white;
}
.text1{
font-family: "Commodore2";
font-size: 10px;
color: white
}
button{
font-family: "Commodore2";
font-size: 20px;
color: white;
background-color: black;
border: none;
}
#back-button{
margin-top: 20px;
border: 5px solid white;
background-color: black;
color: white;
height: 50px;
width: 710px;
font-family: "Commodore2";
text-decoration: underline;
}
</style>
</head>
<body>
<center>
<div id="body-div">
<h1 class="title1" id="theTitle">About</h1>
<hr>
<h2 class="title2">Controls</h2>
<p class="text1">To move your spaceship around use the W,A,S, and D. You may also use the arrow keys to move around. The flicker you must press the F key. Flickering allows you to go through objects that would normally kill you. Though you should flicker sparingly because their is a flicker bar which shows you how much time you have left to flicker. This flicker bar is located on the top left corner of the screen. If you press the P key it shows the hit boxes of your enemies.</p><br>
<hr>
<h2 class="title2">Objective</h2>
<p class="text1">The objective of the game is to survive until the timer on the right corner of your screen goes to 0. Once the timer gets to 0 you can go on to the next level.</p><br>
<hr>
<center><a href="home.html"><button type="button" name="button">Back</button></a></center>
</div>
</center>
<script src="AnyLevel.js" defer></script>
<script src="jquery-3.4.1.min.js" defer></script>
<script src="About.js" defer></script>
</body>
</html>