-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
77 lines (77 loc) · 2.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>About</title>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
<link href="https://fonts.googleapis.com/css?family=Creepster" rel="stylesheet">
<link href="https://use.fontawesome.com/bb92ab9c25.css" media="all" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Nosifer" rel="stylesheet">
</head>
<body>
<header>
<h1><a href="./about.html">Try to Survive</a></h1>
<div class="button">
<a href="./index.html">
<span class="txt">Back to Menu</span>
<span class="round"><i class="fa fa-chevron-left"></i></span>
</a>
</div>
</header>
<main>
<div class="about">
<h2>About</h2>
<p>Try to Survive is a game with top-down view.
History is you woke up and realized that you are alone.
Near you only pistol with 20 clips in it.
You requested help and it will come only in 5 minutes.
The only thing left to do is try to survive this 5 min.</p>
</div>
<div class="screenshot">
<img src="./img/screen.png" alt="screenshot" height="60%" width="60%">
</div>
<div class="controls">
<h2>Controls</h2>
<div class="movement">
<p>Movement</p>
<img src="img/move_keys.png" alt="Move Keys" height="100%">
</div>
<div class="deceleration">
<p>Deceleration of Turn</p>
<img src="img/SHIFT.jpg" alt="Shift Button" height="100%">
</div>
<div class="reload">
<p>Reload Weapon</p>
<img src="img/R.png" alt="Reload Keys" height="100%">
</div>
<div class="carousel">
<p>Change Weapon</p>
<div class="container">
<img src="img/weapon_select_keys.png" alt="Weapon Selected Keys" height="100%">
<div class="wheel">
<img src="img/wheel_1.png" alt="Wheel Forward" height="100%">
<img src="img/wheel_2.png" alt="Wheel Back" height="100%">
</div>
</div>
</div>
<div class="shoot">
<p>Shoot</p>
<div class="container">
<img src="img/SPACE.jpg" alt="Space Button" height="100%">
<img src="img/click_1.png" alt="Left Mouse Button" height="100%">
</div>
</div>
</div>
<div class="presentation">
<a href="http://slides.com/bloodofden/try-to-survive#/" target="_self">Presentation</a>
</div>
</main>
<footer>
<p>
Created by:
<a href="https://github.com/BezakDenis" target="_blank"> Bezak Denis</a>
</p>
</footer>
</body>
</html>