Untitled

 avatar
unknown
plain_text
3 months 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>My Simple Website</title>
    <link rel="stylesheet" href="styles.css">
</head>
<body>
    <header>
        <h1>Welcome to My Simple Website</h1>
    </header>

    <nav>
        <ul>
            <li><a href="#home">Home</a></li>
            <li><a href="#about">About</a></li>
            <li><a href="#contact">Contact</a></li>
        </ul>
    </nav>

    <section id="home">
        <h2>Home</h2>
        <p>This is the home section.</p>
    </section>

    <section id="about">
        <h2>About</h2>
        <p>This is the about section where you can tell visitors about yourself or your website.</p>
    </section>

    <section id="contact">
        <h2>Contact</h2>
        <p>Here's how you can contact us!</p>
    </section>

    <footer>
        <p>© 2025 My Simple Website. All rights reserved.</p>
    </footer>

    <script src="script.js"></script>
</body>
</html>
Editor is loading...
Leave a Comment