Untitled

 avatar
unknown
plain_text
5 months ago
1.9 kB
1
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 Website</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>

    <section id="home">
        <h2>Home</h2>
        <p>This is the homepage. Here you can find some introductory text about the website.</p>
    </section>

    <section id="about">
        <h2>About Us</h2>
        <p>We are a company dedicated to delivering quality services. Learn more about what we do!</p>
    </section>

    <section id="services">
        <h2>Our Services</h2>
        <ul>
            <li>Web Design</li>
            <li>App Development</li>
            <li>SEO Optimization</li>
        </ul>
    </section>

    <section id="contact">
        <h2>Contact Us</h2>
        <form id="contactForm">
            <label for="name">Name:</label>
            <input type="text" id="name" name="name" required><br><br>
            
            <label for="email">Email:</label>
            <input type="email" id="email" name="email" required><br><br>

            <label for="message">Message:</label>
            <textarea id="message" name="message" required></textarea><br><br>

            <button type="submit">Send Message</button>
        </form>
    </section>

    <footer>
        <p>&copy; 2024 My Simple Website. All rights reserved.</p>
    </footer>

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