Untitled

mail@pastecode.io avatarunknown
plain_text
a month ago
1.8 kB
1
Indexable
Never
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Your Clothing Brand</title>
    <link rel="stylesheet" href="styles.css"> <!-- Link to your CSS file -->
</head>
<body>
    <header class="header">
        <nav class="navbar">
            <div class="logo">Your Brand Name</div>
            <ul class="nav-links">
                <li><a href="#home">Home</a></li>
                <li><a href="#shop">Shop</a></li>
                <li><a href="#about">About Us</a></li>
                <li><a href="#contact">Contact</a></li>
            </ul>
        </nav>
    </header>

    <section id="home" class="hero">
        <div class="hero-content">
            <h1>Welcome to Your Clothing Brand</h1>
            <p>Discover the latest trends and styles.</p>
            <div class="social-links">
                <a href="https://www.facebook.com/yourbrand" target="_blank">
                    <img src="facebook-icon.png" alt="Facebook">
                </a>
                <a href="https://www.instagram.com/yourbrand" target="_blank">
                    <img src="instagram-icon.png" alt="Instagram">
                </a>
            </div>
        </div>
    </section>

    <section id="shop" class="shop-section">
        <!-- Display your clothing products here -->
    </section>

    <section id="about" class="about-section">
        <!-- Information about your brand -->
    </section>

    <section id="contact" class="contact-section">
        <!-- Contact information and form -->
    </section>

    <footer class="footer">
        <p>&copy; 2023 Your Clothing Brand. All rights reserved.</p>
    </footer>
</body>
</html>