Untitled

mail@pastecode.io avatar
unknown
plain_text
5 months ago
1.2 kB
2
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>My Fake Site</title>
    <link rel="stylesheet" href="styles.css">
</head>
<body>
    <header>
        <h1>Welcome to My Fake Site</h1>
        <nav>
            <ul>
                <li><a href="#home">Home</a></li>
                <li><a href="#about">About</a></li>
                <li><a href="#services">Services</a></li>
                <li><a href="#contact">Contact</a></li>
            </ul>
        </nav>
    </header>
    <main>
        <section id="home">
            <h2>Home</h2>
            <p>This is the home section of the fake site.</p>
        </section>
        <section id="about">
            <h2>About</h2>
            <p>Learn more about us here.</p>
        </section>
        <section id="services">
            <h2>Services</h2>
            <p>Explore the services we offer.</p>
        </section>
        <section id="contact">
            <h2>Contact</h2>
            <p>Get in touch with us.</p>
        </section>
    </main>
    <footer>
        <p>&copy; 2024 My Fake Site. All rights reserved.</p>
    </footer>
</body>
</html>
Leave a Comment