Landing_Page/public/index.html
2025-06-12 15:39:04 +02:00

37 lines
1.3 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The land of the penguin</title>
<link rel="stylesheet" href="styles/common.css">
<link rel="stylesheet" href="styles/index.css">
<script src="scripts/common.js" defer></script>
<script src="scripts/index.js" defer></script>
</head>
<body id="body" class="body">
<header class="blur">
<a href="index.html" class="header-link">
The land of the penguin
</a>
</header>
<main>
<div class="card-container">
<a class="card blur" id="vps-card" href="vps.html">
<img src="imgs/penguin.png" alt="Penguin on the web" class="card-image" draggable="false">
<h2>The penguin on the web.</h2>
<p>My Virtual private server ( vps )</p>
</a>
<a class="card blur" id="games-card" href="games.html">
<img src ="imgs/games.png" alt="The wonderful games" class="card-image" draggable="false">
<h2>Games.</h2>
<p>My wonderful games.</p>
</a>
</div>
</main>
<footer class="blur">
<p>&copy; 2025 The land of the penguin</p>
<p>Contact us at: florian@thepenguinontheweb.tech</p>
</footer>
</body>
</html>