34 lines
899 B
HTML
34 lines
899 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Homepage - 2048</title>
|
|
<link rel="stylesheet" href="Homepage.css">
|
|
</head>
|
|
<body>
|
|
<!-- Neon Particles Background -->
|
|
<div id="particles"></div>
|
|
|
|
<!-- Header -->
|
|
<header>
|
|
<div class="logo">2048</div>
|
|
<div class="nav-buttons">
|
|
<a href="Login.html" class="btn btn-secondary">Login</a>
|
|
</div>
|
|
</header>
|
|
|
|
<!-- Hero Section -->
|
|
<section class="hero">
|
|
<div class="hero-title">2048</div>
|
|
<p class="hero-subtitle">Join the tiles, reach 2048</p>
|
|
<div class="cta-buttons">
|
|
<a href="2048.html" class="btn btn-cta btn-play">Play</a>
|
|
<a href="leaderboard.html" class="btn btn-cta btn-leaderboard">🏆 Leaderboard</a>
|
|
</div>
|
|
</section>
|
|
|
|
|
|
<script src="Animation_Homepage.js"></script>
|
|
</body>
|
|
</html> |