Untitled

 avatar
unknown
plain_text
a year ago
1.1 kB
3
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>
    <style>
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f0f0f0;
        }

        header {
            background-color: #333;
            color: #fff;
            text-align: center;
            padding: 10px;
        }

        main {
            padding: 20px;
        }

        footer {
            background-color: #333;
            color: #fff;
            text-align: center;
            padding: 10px;
            position: fixed;
            bottom: 0;
            width: 100%;
        }
    </style>
</head>
<body>
    <header>
        <h1>Game Website</h1>
    </header>

    <main>
        <h2>Welcome to our gaming world!</h2>
        <p>Explore exciting games and have fun.</p>

        <!-- Add your game content here -->

    </main>

    <footer>
        &copy; 2024 Game Website
    </footer>
</body>
</html>
Editor is loading...
Leave a Comment