mirror of
https://github.com/cmclark00/mintris.git
synced 2025-05-18 00:15:20 +01:00
83 lines
No EOL
3.1 KiB
HTML
83 lines
No EOL
3.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Pixel Mint Games - Home</title>
|
|
<link rel="stylesheet" href="css/style.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=Poppins:wght@300;400;500;700&display=swap" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<div class="container">
|
|
<div class="logo">
|
|
<h1>Pixel Mint Games</h1>
|
|
</div>
|
|
<nav>
|
|
<ul>
|
|
<li><a href="index.html">Home</a></li>
|
|
<li><a href="games.html">Games</a></li>
|
|
<li><a href="about.html">About</a></li>
|
|
<li><a href="contact.html">Contact</a></li>
|
|
</ul>
|
|
</nav>
|
|
</div>
|
|
</header>
|
|
|
|
<section class="hero">
|
|
<div class="container">
|
|
<div class="hero-content">
|
|
<h2>Welcome to Pixel Mint Games</h2>
|
|
<p>Crafting minimalist gaming experiences with a focus on elegant design and engaging gameplay.</p>
|
|
<a href="games.html" class="btn">Explore Our Games</a>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="featured-game">
|
|
<div class="container">
|
|
<h2>Featured Game</h2>
|
|
<div class="game-showcase">
|
|
<div class="game-info">
|
|
<h3>Pixel Mint Drop</h3>
|
|
<p>A modern falling block puzzle game for Android, featuring smooth animations, responsive controls, and a beautiful minimalist design.</p>
|
|
<ul class="game-features">
|
|
<li>Familiar block-stacking gameplay</li>
|
|
<li>Smooth animations and responsive controls</li>
|
|
<li>Beautiful minimalist design</li>
|
|
<li>Advanced move detection and scoring</li>
|
|
</ul>
|
|
<a href="pixelmintdrop.html" class="btn">Learn More</a>
|
|
</div>
|
|
<div class="game-image">
|
|
<div class="placeholder-image">Pixel Mint Drop</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<footer>
|
|
<div class="container">
|
|
<div class="footer-content">
|
|
<div class="footer-logo">
|
|
<h3>Pixel Mint Games</h3>
|
|
</div>
|
|
<div class="footer-links">
|
|
<ul>
|
|
<li><a href="privacy.html">Privacy Policy</a></li>
|
|
<li><a href="terms.html">Terms of Service</a></li>
|
|
<li><a href="contact.html">Contact Us</a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<div class="copyright">
|
|
<p>© 2024 Pixel Mint Games. All rights reserved.</p>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
<script src="js/main.js"></script>
|
|
</body>
|
|
</html> |