-
Notifications
You must be signed in to change notification settings - Fork 1
/
about.html
164 lines (141 loc) · 4.33 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>About</title>
<style>
body {
height: 100%;
width: 100%;
margin: 0;
background-color: rgb(29, 182, 187);
font-family: sans-serif;
}
#heading,
#intro,
#use,
#features,
#team,
#links,
#code {
position: absolute;
font-family: 'Courier New', Courier, monospace;
color: black;
font-size: 20px;
}
#heading {
color: red;
font-size: 140px;
top: -15%;
left: 30%;
}
#intro {
top: 20%;
}
#use {
top: 25%;
}
#features {
top: 33%;
}
#team {
top: 43%
}
#links {
top: 53%;
}
#code {
top: 73%;
}
.fa {
position: absolute;
padding: 20px;
font-size: 25px;
width: 25px;
text-align: center;
text-decoration: none;
margin: 5px 2px;
border-radius: 50%;
}
.fa-linkedin {
background: #007bb5;
color: white;
}
.fa-github {
background: black;
color: white;
}
#icon_l1,
#icon_l2 {
left: 13%;
}
#icon_g1,
#icon_g2 {
left: 18%;
}
#icon_l1,
#icon_g1 {
top: 57%
}
#icon_l2,
#icon_g2 {
top: 65%
}
#icon_g3 {
top: 73%;
left: 34%;
}
.return {
position: absolute;
padding: 15px 25px;
font-size: 24px;
text-align: center;
cursor: pointer;
outline: none;
color: red;
background-color: rgb(235, 235, 34);
border: none;
border-radius: 15px;
box-shadow: 0 9px #999;
top: 1%;
left: 1%;
}
.return:hover {
background-color: #3e8e41
}
.return:active {
background-color: #3e8e41;
box-shadow: 0 5px #666;
transform: translateY(4px);
}
</style>
</head>
<body>
<div id="container">
<p id="heading">CAR RACE</p>
<p id="intro">This is the final project for the Web Technologies-1 course. It is a car racing game that was
created
using HTML, CSS, JavaScript and jQuery.</p><br>
<p id="use">Usage - Download or clone the repository and navigate to the folder. In here there will be a file
called Main_menu.html which is the main file for the game. It contains the front page of the game. Open this
file in your browser, preferably Chrome or Firefox and you can go ahead with playing the game.</p><br>
<p id="features">Features:<br>1) For single-player, movement is with the arrow keys.<br>2) For dual player,
movement is with WASD or arrow keys depending on which side of the screen you are playing.</p><br>
<p id="team">Project members:<br>1) Keshav R Raju<br>2) Vishnu S Reddy</p><br>
<p id="links">Links to project members:<br><br>1) Keshav R Raju -<br><br><br>2) Vishnu S Reddy -</p>
<a href="https://github.com/keshavrajur" id="icon_g1" class="fa fa-github"></a>
<a href="https://github.com/vishnureddys" id="icon_g2" class="fa fa-github"></a>
<a href="https://linkedin.com/in/keshav-raju" id="icon_l1" class="fa fa-linkedin"></a>
<a href="https://linkedin.com/in/vishnu-s-reddy-91943a175" id="icon_l2" class="fa fa-linkedin"></a>
<p id="code">Check out the code and the files of this game here -</p>
<a href="https://github.com/vishnureddys/cargame" id="icon_g3" class="fa fa-github"></a>
<button id="return" class="return">↵</button>
</div>
<script type="text/javascript">
document.getElementById("return").onclick = function () {
location.href = "index.html";
};
</script>
</body>
</html>