Skip to content

Commit a26be14

Browse files
committed
Merge branch 'landing-page'
2 parents 157e457 + 2d49c32 commit a26be14

File tree

2 files changed

+101
-0
lines changed

2 files changed

+101
-0
lines changed

docs/index.html

+101
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,101 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Duellum</title>
7+
<style>
8+
body {
9+
background-color: #2A2A2A;
10+
color: #FFF;
11+
font-family: Arial, sans-serif;
12+
margin: 0;
13+
padding: 20px;
14+
}
15+
.container {
16+
max-width: 800px;
17+
margin: auto;
18+
padding: 20px;
19+
background-color: #333;
20+
border-radius: 8px;
21+
}
22+
header h1 {
23+
color: #F76C6C;
24+
text-align: center;
25+
}
26+
section {
27+
margin-bottom: 20px;
28+
}
29+
p {
30+
line-height: 1.6;
31+
}
32+
img {
33+
max-width: 100%;
34+
height: auto;
35+
display: block;
36+
margin: 0 auto;
37+
}
38+
.download-link {
39+
display: flex;
40+
align-items: center;
41+
margin-bottom: 10px; /* Added margin for spacing between download links */
42+
}
43+
.download-link img {
44+
width: 24px; /* Smaller width for icons */
45+
margin-right: 10px; /* Space between icon and text */
46+
}
47+
a {
48+
display: flex;
49+
align-items: center;
50+
background-color: #F76C6C;
51+
color: #FFF;
52+
padding: 10px 20px;
53+
text-decoration: none;
54+
border-radius: 4px;
55+
}
56+
a:hover {
57+
background-color: #fa8072;
58+
}
59+
</style>
60+
</head>
61+
<body>
62+
<div class="container">
63+
<header>
64+
<h1>Duellum</h1>
65+
</header>
66+
67+
<section>
68+
<p>
69+
Duellum is a captivating 2D shooter game where you embody the role of the last surviving pilot tasked with the monumental duty of defending your nation against formidable enemies. Utilize the WASD keys to navigate your aircraft through treacherous skies, and press space to unleash powerful EMP charges. These charges are your primary weapon, capable of disintegrating enemy planes upon contact, turning them into oblivion. Your objective is clear: survive the onslaught, eliminate as many enemies as possible, and amass the highest score to cement your legacy as the ultimate defender of your homeland.
70+
</p>
71+
</section>
72+
73+
<section>
74+
<img src="screenshot.png" alt="Game Screenshot">
75+
</section>
76+
77+
<section>
78+
<h2>Download</h2>
79+
<div class="download-link">
80+
<a href="Duellum-linux.zip" download>
81+
<img src="https://emojis.slackmojis.com/emojis/images/1643514939/9611/linux.png?1643514939" alt="Linux">
82+
Download for Linux
83+
</a>
84+
</div>
85+
<div class="download-link">
86+
<a href="Duellum-windows.zip" download>
87+
<img src="https://emojis.slackmojis.com/emojis/images/1643514070/261/windows.png?1643514070" alt="Windows">
88+
Download for Windows
89+
</a>
90+
</div>
91+
<div class="download-link">
92+
<a href="Duellum-macos.zip" download>
93+
<img src="https://emojis.slackmojis.com/emojis/images/1657081165/59953/apple_mac.png?1657081165" alt="Windows">
94+
Download for MacOS
95+
</a>
96+
97+
</div>
98+
</section>
99+
</div>
100+
</body>
101+
</html>

docs/screenshot.png

26.1 KB
Loading

0 commit comments

Comments
 (0)