-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
156 lines (156 loc) · 6.27 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
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>OpenSoldat - Home</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="page">
<header>
<div class="logo">
<img src="img/logo.svg" alt="OpenSoldat">
</div>
<div class="spacer"></div>
<ul class="nav">
<li class="selected">
<a href="index.html">HOME</a>
</li>
<li>
<a href="download.html">DOWNLOAD</a>
</li>
<li>
<a href="news.html">NEWS</a>
</li>
<li>
<a href="community.html">COMMUNITY</a>
</li>
<li>
<a href="faq.html">FAQ</a>
</li>
</ul>
</header>
<div class="content">
<section class="full-width bg-opensoldat" style="padding-top: 80px; padding-bottom: 110px">
<a id="opensoldat"></a>
<div class="img-soldiers"></div>
<h1><mark>WHAT IS OPENSOLDAT</mark></h1>
<p>
Soldat is an exciting unique side-view multiplayer action game. Played by hundreds of players at this moment. It takes the best from games like Liero, Worms, Quake and Counter-Strike and gives you fast action gameplay with tons of blood and flesh. Little ragdoll soldiers fight against each other on 2D battle arenas using a deadly arsenal.<br>
This is what multiplayer was invented for.
</p>
<p>Pure fun, addictive kill'em all gameplay. NOW OPEN!</p>
<p style="margin: 80px 0 0">But don't take our word for it!</p>
<a class="play-button-red" href="download.html">PLAY NOW!</a>
</section>
<section class="full-width bg-features">
<a id="features"></a>
<h1><mark>FEATURES? WE GOT EM'!</mark></h1>
<p>
Unique physics-based movement system<br>
18 weapons for every playstyle<br>
7 classic gamemodes<br>
Competitive skill-based matchmaking<br>
64 masterfully crafted maps<br>
Badass metal soundtrack<br>
</p>
<p>
And we haven't touched on a huge ton of community created content!<br>
What else can one need?
</p>
</section>
<section class="full-width bg-code">
<a id="code"></a>
<div class="right">
<h1><mark class="red">WE #LEARNEDTOCODE</mark></h1>
<p>Having the misfortune of being written in Pascal, Soldat is currently being developed and<br>
maintained by the brightest of minds banned from r/ProgrammerHumor. This allows for the<br>
blossoming community of 4 people to discuss ideas and implement them quickly, resulting<br>
in the productive state of development on display.</p>
<p>But there is never enough people implementing bug fixes that result in RCE exploits!</p>
<p>Consider becoming a developer yourself! It's free!</p>
</div>
</section>
<section class="full-width bg-playnow" style="padding-top: 115px; height: 649px">
<a id="playnow"></a>
<h1 class="center">WHAT ARE YOU WAITING FOR?</h1>
<a class="play-button center" href="download.html">PLAY NOW!</a>
</section>
</div>
<footer>
<div class="info">
<img class="logo" src="img/logo.svg" alt="OpenSoldat">
<p class="copyright">
Copyright © 2022 The OpenSoldat Team<br>
All rights reserved.
</p>
</div>
<div class="spacer"></div>
<ul class="sitemap">
<li>
<h2 class="selected">
<a href="index.html">HOME</a>
</h2>
<ul class="sublinks">
<li>
<a href="index.html#opensoldat">OpenSoldat</a>
</li>
<li>
<a href="index.html#features">Features</a>
</li>
<li>
<a href="index.html#code">Code</a>
</li>
<li>
<a href="index.html#playnow">Play Now!</a>
</li>
</ul>
</li>
<li>
<h2>
<a href="download.html">DOWNLOAD</a>
</h2>
<ul class="sublinks">
<li>
<a href="download.html#opensoldat">OpenSoldat</a>
</li>
<li>
<a href="download.html#polyworks">PolyWorks</a>
</li>
<li>
<a href="download.html#tools">Tools and Scripts</a>
</li>
</ul>
</li>
<li>
<h2>
<a href="news.html">NEWS</a>
</h2>
<ul class="sublinks">
</ul>
</li>
<li>
<h2>
<a href="community.html">COMMUNITY</a>
</h2>
<ul class="sublinks">
<li>
<a href="community.html#discord">Discord</a>
</li>
<li>
<a href="community.html#team">Team</a>
</li>
</ul>
</li>
<li>
<h2>
<a href="faq.html">FAQ</a>
</h2>
<ul class="sublinks">
</ul>
</li>
</ul>
</footer>
</div>
</body>
</html>