-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
81 lines (81 loc) · 4.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="style.css">
<title>Landing page</title>
<link rel="icon" type="image/x-icon" href="images/favicon.ico">
</head>
<body>
<div class="header">
<img class="logo" src="images/Lethal_Company.webp" alt="lethal-company-logo">
<!--image obtained from: https://logos.fandom.com/wiki/Lethal_Company?file=Lethal_Company.png. Lethal company and its assets
are property of Zeekerss game dev-->
<ul>
<li><a href="https://steamcommunity.com/app/1966720" alt="lethal-company-steam-page">Buy now!</a></li>
<li><a href="https://lethal-company.fandom.com/wiki/Lethal_Company_Wiki" alt="lethal-company-wiki">Wiki</a></li>
<li><a href="https://www.youtube.com/@ZeekerssRBLX/videos" alt="Zeekerss-youtube-chanel">Youtube channel</a></li>
</ul>
</div>
<div class="hero">
<div class="hero-text">
<h1 class="hero-main-text">Enroll at the company now!</h1>
<p class="hero-secondary-text">The company is recruiting new members and you can be a
<strong>great asset</strong> to the company.</p>
<button class="hero-button">Join now!</button>
<p class="hero-disclaimer"><em>*We are legally obliged to say that the company is not responsible
for any injury or <strong>death</strong> caused by the jobs environment and any death on your
team will represent a fine to your current cash amount. </em></p>
</div>
<img class="hero-img" src="images/lethal-company-early-access-review_m75p.1200.webp" alt="lethal-company-banner">
</div>
<div class="info">
<div class="info-header"><h1>Meet the local wildlife</h1></div>
<div class="info-items">
<div class="bracken">
<img class="info-img" src="images/Followerman.png" alt="bracken">
<h2>Bracken aka flower man</h2>
<p>This lovely creature will try to sneak behind you to give you a warn hug.</p>
</div>
<div class="loot-bug">
<img class="info-img" src="images/Hoarding_Bug_facing_the_player.webp" alt="hoarding-bug">
<h2>Hoarding or loot bug</h2>
<p>These terrifying monsters will try to steal your scrap
and may god have mercy on you if you try to steal it back.</p>
</div>
<div class="thumper">
<img class="info-img" src="images/Lethal-company-thumper-attack-2.webp" alt="thumper">
<h2>Thumper</h2>
<p>The ugly relative of <em>¿sharks?</em>. Will rampage at you as soon as he spots you.</p>
</div>
<div class="ghost-girl">
<img class="info-img" src="images/7c5ada3613657fc.gif" alt="ghost-girl">
<h2>Ghost girl</h2>
<p>What are you talking about?, are you going insane?, this doesn't even exists!</p>
</div>
</div>
</div>
<div class="quote">
<div class="quote-content">
<p class="quote-text">"This is the best company ever and
I'm definitely not being threatened with a shotgun to say this."</p>
<p class="quote-author">-A random happy employee</p>
</div>
<img class="quote-img" src="images/random-employee.webp" alt="random-happy-employee">
</div>
<div class="newsletter">
<div class="newsletter-text">
<div class="newsletter-title"><h1>Subscribe to the company newsletter!</h1></div>
<div class="newsletter-content"><p>Don't miss out any sale on items.</p></div>
</div>
<div class="newsletter-button">
<button>Subscribe</button>
</div>
</div>
<div class="footer">
<p>Copyright © The Odin Project 2024</p>
</div>
</body>
</html>