Untitled

 avatar
unknown
plain_text
a year ago
1.9 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>Clothing Store</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f4;
        }

        header {
            background-color: #333;
            color: #fff;
            text-align: center;
            padding: 1em;
        }

        nav {
            background-color: #555;
            color: #fff;
            padding: 0.5em;
            text-align: center;
        }

        nav a {
            color: #fff;
            text-decoration: none;
            padding: 0.5em 1em;
        }

        nav a:hover {
            background-color: #777;
        }

        section {
            padding: 1em;
        }

        footer {
            background-color: #333;
            color: #fff;
            text-align: center;
            padding: 1em;
            position: fixed;
            bottom: 0;
            width: 100%;
        }
    </style>
</head>

<body>
    <header>
        <h1>Clothing Store</h1>
    </header>

    <nav>
        <a href="#home">Home</a>
        <a href="#men">Men's Clothing</a>
        <a href="#women">Women's Clothing</a>
        <a href="#contact">Contact</a>
    </nav>

    <section>
        <h2>Welcome to our Clothing Store!</h2>
        <p>Explore the latest trends in men's and women's fashion.</p>
        <h3>Featured Products</h3>
        <ul>
            <li>Men's Casual Shirt</li>
            <li>Women's Denim Jeans</li>
            <li>Kids' Sportswear</li>
        </ul>
    </section>

    <footer>
        &copy; 2024 Clothing Store. All rights reserved.
    </footer>
</body>

</html>
Leave a Comment