Untitled

mail@pastecode.io avatar
unknown
html
8 months ago
1.8 kB
2
Indexable
Never
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Shoe Emporium</title>
    <link rel="stylesheet" href="styles.css">
</head>
<body>
    <header>
        <h1>Welcome to Shoe Emporium</h1>
        <nav>
            <ul>
                <li><a href="#home">Home</a></li>
                <li><a href="#men">Men's Shoes</a></li>
                <li><a href="#women">Women's Shoes</a></li>
                <li><a href="#contact">Contact</a></li>
            </ul>
        </nav>
    </header>

    <section id="home">
        <h2>Discover Your Perfect Pair</h2>
        <p>Explore our latest collection of shoes for men and women.</p>
        <a href="#men" class="btn">Shop Men's Shoes</a>
        <a href="#women" class="btn">Shop Women's Shoes</a>
    </section>

    <section id="men">
        <h2>Men's Shoes</h2>
        <!-- Men's shoe products here -->
    </section>

    <section id="women">
        <h2>Women's Shoes</h2>
        <!-- Women's shoe products here -->
    </section>

    <section id="contact">
        <h2>Contact Us</h2>
        <p>Have a question or feedback? Reach out to us!</p>
        <form action="#" method="post">
            <label for="name">Name:</label>
            <input type="text" id="name" name="name" required>
            <label for="email">Email:</label>
            <input type="email" id="email" name="email" required>
            <label for="message">Message:</label>
            <textarea id="message" name="message" required></textarea>
            <button type="submit">Submit</button>
        </form>
    </section>

    <footer>
        <p>&copy; 2024 Shoe Emporium. All rights reserved.</p>
    </footer>
</body>
</html>
Leave a Comment