Untitled

 avatar
unknown
plain_text
a year ago
806 B
4
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Game Website</title>
    <link rel="stylesheet" href="styles.css">
</head>
<body>
    <header>
        <h1>Welcome to our Game Website</h1>
        <nav>
            <ul>
                <li><a href="#">Home</a></li>
                <li><a href="#">Games</a></li>
                <li><a href="#">About Us</a></li>
                <li><a href="#">Contact</a></li>
            </ul>
        </nav>
    </header>
    <section class="featured-games">
        <h2>Featured Games</h2>
        <!-- Featured game cards can be added here -->
    </section>
    <footer>
        <p>&copy; 2024 Game Website. All rights reserved.</p>
    </footer>
</body>
</html>
Editor is loading...
Leave a Comment