Untitled

mail@pastecode.io avatar
unknown
plain_text
5 months ago
961 B
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 Basic Webpage</title>
</head>
<body>
    <header>
        <h1>Welcome to My Webpage</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 Section</h2>
        <p>This is the home section of the webpage.</p>
    </section>
    <section id="about">
        <h2>About Section</h2>
        <p>This section contains information about the webpage or its creator.</p>
    </section>
    <section id="contact">
        <h2>Contact Section</h2>
        <p>Here you can find contact details or a contact form.</p>
    </section>
    <footer>
        <p>&copy; 2024 My Basic Webpage</p>
    </footer>
</body>
</html>
Leave a Comment