Created
February 9, 2025 11:57
-
-
Save w1md2/0d6f54bb809427a41ad9f0713ea4b2d6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Robloc - Play & Create</title> | |
<link rel="stylesheet" href="styles.css"> | |
</head> | |
<body> | |
<header> | |
<h1 class="logo">Robloc</h1> | |
<nav> | |
<a href="#">Home</a> | |
<a href="#">Games</a> | |
<a href="#">Developers</a> | |
<a href="#">Login</a> | |
<a href="#" class="btn">Sign Up</a> | |
</nav> | |
</header> | |
<section class="hero"> | |
<h2>Play, Create & Explore</h2> | |
<p>Join millions of players in the ultimate gaming universe.</p> | |
<a href="#" class="btn">Start Playing</a> | |
</section> | |
<section class="games"> | |
<h2>Popular Games</h2> | |
<div class="game-list"> | |
<div class="game-card">Game 1</div> | |
<div class="game-card">Game 2</div> | |
<div class="game-card">Game 3</div> | |
</div> | |
</section> | |
<footer> | |
<p>© 2025 Robloc. All Rights Reserved.</p> | |
</footer> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment