Untitled

 avatar
unknown
plain_text
2 months ago
1.3 kB
8
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Duries | Streetwear</title>
    <link rel="stylesheet" href="styles.css">
</head>
<body>
    <header>
        <h1>DURIES</h1>
        <nav>
            <ul>
                <li><a href="#">Home</a></li>
                <li><a href="#">Shop</a></li>
                <li><a href="#">About</a></li>
                <li><a href="#">Contact</a></li>
            </ul>
        </nav>
    </header>

    <section class="hero">
        <h2>Streetwear for the Bold</h2>
        <p>Unique and stylish clothing for the culture.</p>
        <a href="#" class="btn">Shop Now</a>
    </section>

    <section class="products">
        <h2>New Arrivals</h2>
        <div class="product-grid">
            <div class="product">
                <img src="product1.jpg" alt="Streetwear T-Shirt">
                <p>Oversized T-Shirt - $40</p>
            </div>
            <div class="product">
                <img src="product2.jpg" alt="Hoodie">
                <p>Signature Hoodie - $60</p>
            </div>
        </div>
    </section>

    <footer>
        <p>© 2025 Duries. All rights reserved.</p>
    </footer>
</body>
</html>
Editor is loading...
Leave a Comment