Landing_Page/public/games.html
2025-06-13 08:51:08 +02:00

33 lines
1.2 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/games.css">
<link rel="icon" href="imgs/favicon.ico" type="image/x-icon">
<script src="scripts/common.js" defer></script>
<script src="scripts/games.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="tetris-card" href="https://games.penggames.systems">
<img src="imgs/tetris.png" alt="Penguin on the web" class="card-image" draggable="false">
<h2>Tetris on the web.</h2>
<p>The best Tetris you've ever seen.</p>
</a>
</div>
</main>
<footer class="blur">
<p>&copy; 2025 The land of the penguin</p>
<p>Contact us at: <a href="mailto:florian@thepenguninontheweb.tech">florian@thepenguinontheweb.tech</a></p>
</footer>
</body>
</html>