Untitled

 avatar
unknown
plain_text
a year ago
1.6 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>Your Gaming Channel</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f0f0f0;
        }
        header {
            background-color: #333;
            color: white;
            text-align: center;
            padding: 1em;
        }
        nav {
            background-color: #444;
            padding: 0.5em;
        }
        nav a {
            color: white;
            padding: 0.5em 1em;
            text-decoration: none;
        }
        section {
            padding: 2em;
        }
    </style>
</head>
<body>
    <header>
        <h1>Your Gaming Channel</h1>
    </header>
    <nav>
        <a href="#home">Home</a>
        <a href="#about">About</a>
        <a href="#videos">Videos</a>
        <a href="#contact">Contact</a>
    </nav>
    <section id="home">
        <h2>Welcome to Your Gaming Channel!</h2>
        <p>Explore the world of gaming with our exciting videos.</p>
    </section>
    <section id="about">
        <h2>About Us</h2>
        <p>Share your gaming journey and experiences with the gaming community.</p>
    </section>
    <section id="videos">
        <h2>Latest Videos</h2>
        <p>Watch and enjoy our gaming content. Don't forget to subscribe!</p>
    </section>
    <section id="contact">
        <h2>Contact Us</h2>
        <p>Reach out to us through the contact form or follow us on social media.</p>
    </section>
</body>
</html>
Editor is loading...
Leave a Comment