Files
codecademy/company_home_page_with_flexbox/index.html
gauvainboiche 6a18c3851c First init
2025-07-08 11:23:22 +02:00

92 lines
5.2 KiB
HTML

<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Accueil - SESIQ</title>
<link rel="stylesheet" href="./resources/css/style.css">
<link rel="stylesheet" href="./resources/css/fonts.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Orbitron:wght@400..900&display=swap" rel="stylesheet">
</head>
<body>
<header>
<img class="logo-img" src="./resources/img/main-logo.png">
<nav class="navigation-bar">
<ul>
<li class="navigation"><a href="#title">SESIQ</a></li>
<li class="navigation"><a href="#mission">Our vision</a></li>
<li class="navigation"><a href="#products">Our products</a></li>
<li class="navigation"><a href="#employees">Our heroes</a></li>
<li class="navigation"><a href="#machines">Our hope</a></li>
</ul>
</nav>
</header>
<section class="container logo-title">
<img class="title-img" src="./resources/img/main-logo.jpg">
<h1>SESIQ INDUSTRIAL</h1>
</section>
<section class="container mission" id="mission">
<h1>Our Mission</h1>
</section>
<section class="container products" id="products">
<h1>Our Products</h1>
<div class="presentation">
<img src="./resources/img/starship-1.jpg">
<h2>Nebula-class Luxury ship</h2>
<p>This very ship was designed by our best engineers to appeal to our special clients wanting luxury and strong pirate-free hull.</p>
<h3>450.000 £</h3>
</div>
<div class="presentation">
<img src="./resources/img/starship-2.jpg">
<h2>Blackhole-class "Line breaker" Racer ship</h2>
<p>Designed to break by force - without firing any weapon - any law-enforcment or pirate barrage, at the cost of cargo space as well as confort, while remaining in the highest standards of equipments.</p>
<h3>375.000 £</h3>
</div>
<div class="presentation">
<img src="./resources/img/starship-3.jpg">
<h2>Moon-class Cargofret ship</h2>
<p>Specially designed for cargo space, while remaining in the best standards for sleep solutions, passengers transport and accomodations, you can pack up to 200 metric tons of merchandises.</p>
<h3>600.000 £</h3>
</div>
</section>
<section class="container employees" id="employees">
<h1>Our Heroes</h1>
<div class="presentation">
<img src="./resources/img/employees-1.jpg">
<h2>Testers</h2>
<p>Our dedicated team for testing purposes will always make sure the highest luxury standards are enforced. Nothing but the best is good enough for them.</p>
</div>
<div class="presentation">
<img src="./resources/img/employees-2.jpg">
<h2>Protectors</h2>
<p>Protecting products and employees requires a full military-prepped and organized in-house militia. We can and will protect by any mean necessary the very starship we ought to ship you, and even offer some limited physical protection by landing out militia members. Please contact Sales before placing an order requiring it.</p>
</div>
<div class="presentation">
<img src="./resources/img/employees-3.jpg">
<h2>Engineers</h2>
<p>We only work with the best engineers the galaxy can found. The salary and compensation package include full dental plan, regular doctors appointments, exoskeletons provided at will to prevent ribs and lungs damages, as well as a full retirement plan and life insurance policy to ensure that your kids won't need anything in their live, would something happen.</p>
</div>
</section>
<section class="container machines" id="machines">
<h1>Our Hope</h1>
<div class="presentation">
<img src="./resources/img/lines-1.jpg">
<h2>Security</h2>
<p>We only work with the higher security standards. Our employees are all fully equipped and trained to minimze any injury during worktime.</p>
</div>
<div class="presentation">
<img src="./resources/img/lines-2.jpg">
<h2>Scalability</h2>
<p>We work with small blocks, with extra scalability would the order requires it. Anything can be vertically and horizontally upgraded for better performances.</p>
</div>
<div class="presentation">
<img src="./resources/img/lines-3.jpg">
<h2>Continuous formation</h2>
<p>We believe in people well-trained and happy. So we always have 20% of our workforce composed only by young people without or preparing a diploma, or searching for a first employment without experience.</p>
</div>
</section>
<footer>2025. Gauvain Boiché. All rights reserved, but feel free to steal anything you want and consider it public domain. All pictures are AI generated and thus not subject to copyright.</footer>
</body>
</html>