-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathinfo.html
56 lines (44 loc) · 1.79 KB
/
info.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
<!DOCTYPE html>
<html>
<head>
<!-- Local Stylesheets -->
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/2048theme.css">
<!-- 3rd Party Stylesheets + Icon Font -->
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<!-- 3rd Party JS libraries -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquerymobile/1.4.5/jquery.mobile.js"></script>
<!-- Local JS -->
<script src="scripts/menus.js"></script>
<!-- Adjust screen nicely for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<title>SwipeAway - Info</title>
</head>
<body>
<div id="topBar">
<a name="link" href="index.php" id="icon" rel="external"><i class="material-icons">arrow_back</i></a>
</div>
<div id="info">
<h1>Info</h1>
</div>
<div id="content">
<h2>About</h2>
<p>We are five guys from the CST program at BCIT that had a vision to create a simple, fun, and addictive game that would stimulate the mind as well as be a great time killer. SwipeAway was concieved as a brain game during a project term at BCIT where users will do the simple task of avoiding obstacles.</p>
<h2>Team</h2>
<h3> Geoff McLennan <br>
Kelvin Wong <br>
Jesse Goertz <br>
Daniel Park <br>
Jim Ko
</h3>
<h2>Special Thanks</h2>
<p id="thanks"> <strong>Google</strong> for supplying the Material Design Icons<br>
<strong>Gabriele Cirulli</strong> for the 2048 inpired colour scheme<br>
<strong>Twitter</strong> for the sound effects
</p>
</div>
<audio preload="auto" id="audioClick" src="audio/tick.ogg">
</body>
</html>