-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (78 loc) · 4.02 KB
/
index.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
<!DOCTYPE html>
<meta name="viewport" content="width=device-width, initial-scale=1">
<html lang="en">
<head>
<link rel="stylesheet" href="css/main.css">
<link href="https://fonts.googleapis.com/css?family=Fresca|Press+Start+2P" rel="stylesheet">
<meta charset="utf-8">
<title>Infestation Sim</title>
</head>
<body>
<div class="container">
<div class="horContainer" id="logo">
<img src="assets/logo.svg" alt="Infestation Sim" class="title">
</div>
<div class="horContainer section" id="aboutGame">
<div class="vertContainer">
<h1>About the Game</h1>
<p>Infestation Sim is a small game created during the Berlin Mini Jam in February 2017. In this game you’ll play as the queen parasite trying to infest all the attendants of certain event in Berlin. As you jump from host to host they become infested leaving them confused and behaving erratically. Keep in mind that as you jump from host to host they will become sick, making it harder for you to jump to the next one.<br><br></p>
<p class="p_alignRight">Tl;dr: Jump, infest, don’t die.</p>
</div>
</div>
<div class="horContainer section" id="screenshots">
<div class="vertContainer">
<h1>Screenshots</h1>
<img src="assets/ss01.jpg" alt="Screenshot: Indev 01">
<img src="assets/ss02.jpg" alt="Screenshot: Indev 02">
<img src="assets/ss03.jpg" alt="Screenshot: Release">
</div>
</div>
<div class="horContainer section" id="downloads">
<div class="vertContainer">
<h1>Downloads</h1><br>
<div class="buttonContainer">
<a href="https://rhoeberg.itch.io/infestation-sim" target="_blank"><button type="button" name="button"><h3>Download on itch.io</h3></button></a>
</div>
</div>
</div>
<div class="horContainer section" id="aboutTeam">
<h1>The Team</h1>
<div class="horContainer">
<div class="vertContainer">
<h2>Rasmus</h2>
<a href="https://twitter.com/rhoeberg" target="_blank"><img src="assets/rasmus.jpg" alt="" class="avatar"></a>
<h3>Unity Developer</h3>
</div>
<div class="vertContainer">
<h2>Vasko</h2>
<a href="https://twitter.com/metavasko" target="_blank"><img src="assets/vasko.jpg" alt="" class="avatar"></a>
<h3>Unity Developer</h3>
</div>
</div>
<div class="horContainer">
<div class="vertContainer">
<h2>Fabian</h2>
<a href="https://twitter.com/Plasmaernst" target="_blank"><img src="assets/fabian.jpg" alt="" class="avatar"></a>
<h3>Artist</h3>
</div>
<div class="vertContainer">
<h2>Luis</h2>
<a href="https://twitter.com/lfbusta" target="_blank"><img src="assets/luis.jpg" alt="" class="avatar"></a>
<h3>Web Developer</h3>
</div>
</div>
</div>
<div class="horContainer section" id="aboutMinigamejam">
<div class="vertContainer">
<h1>About Berlin Mini Jam</h1>
<a href="http://www.berlinminijam.de/p/about.html" target="_blank"><img src="http://1.bp.blogspot.com/-OzVUUGxsbIk/Tt4a7RUO9KI/AAAAAAAADdo/1AVdjL6r5n4/s1600/bmj512.png" alt=""></a>
<p>Berlin Mini Jam is a monthly, ~8 hours long game creation jam that brings people together to try out game ideas and create prototypes.<br><br>
More information at <a href="http://www.berlinminijam.de/p/about.html" target="_blank">berlinminijam.</a></p>
</div>
</div>
<footer>
</footer>
</div>
<script src=scripts/main.js></script>
</body>
</html>