Meta Description" name="description" />
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Creator Games</title>
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
background: #0d0d0d;
color: #fff;
text-align: center;
}
header {
background: #1a1a1a;
padding: 20px;
}
header h1 {
margin: 0;
color: #00ffcc;
}
nav {
margin-top: 10px;
}
nav a {
color: #00ffcc;
margin: 0 15px;
text-decoration: none;
font-weight: bold;
}
.games {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
padding: 40px;
}
.game-card {
background: #1a1a1a;
border-radius: 10px;
padding: 20px;
transition: transform 0.3s;
}
.game-card:hover {
transform: scale(1.05);
background: #262626;
}
.game-card img {
width: 100%;
border-radius: 10px;
}
footer {
background: #111;
padding: 15px;
margin-top: 20px;
color: #888;
}
</style>
</head>
<body>
<header>
<h1>🎮 Creator Games</h1>
<nav>
<a href="#home">Home</a>
<a href="#games">Games</a>
<a href="#about">About</a>
<a href="#contact">Contact</a>
</nav>
</header>
<section id="home">
<h2>Welcome to Creator Games</h2>
<p>Play, create, and explore the best games made by creators.</p>
</section>
<section id="games" class="games">
<div class="game-card">
<img src="https://via.placeholder.com/300x180" alt="Game 1">
<h3>Game Title 1</h3>
<p>Exciting description of the first game.</p>
</div>
<div class="game-card">
<img src="https://via.placeholder.com/300x180" alt="Game 2">
<h3>Game Title 2</h3>
<p>Awesome adventure game made by creators.</p>
</div>
<div class="game-card">
<img src="https://via.placeholder.com/300x180" alt="Game 3">
<h3>Game Title 3</h3>
<p>Creative platform for fun and play.</p>
</div>
</section>
<section id="about">
<h2>About Us</h2>
<p>Creator Games is a platform where gamers and creators come together.</p>
</section>
<section id="contact">
<h2>Contact</h2>
<p>Email: support@creatorsgames.com</p>
</section>
<footer>
<p>© 2025 Creator Games | All Rights Reserved</p>
</footer>
</body>
</html>
2
2
3KB
3KB
278.0ms
368.0ms
279.0ms