Untitled

mail@pastecode.io avatar
unknown
plain_text
7 months ago
1.6 kB
0
Indexable
Never
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Dropshipping Website</title>
    <style>
        /* Add CSS styling here */
    </style>
</head>
<body>
    <header>
        <h1>Welcome to Our Dropshipping Store</h1>
    </header>
    <nav>
        <ul>
            <li><a href="#products">Products</a></li>
            <li><a href="#about">About Us</a></li>
            <li><a href="#contact">Contact Us</a></li>
        </ul>
    </nav>
    <main>
        <section id="products">
            <h2>Our Products</h2>
            <div class="product">
                <img src="product1.jpg" alt="Product 1">
                <h3>Product 1</h3>
                <p>Description of Product 1</p>
                <button>Add to Cart</button>
            </div>
            <div class="product">
                <img src="product2.jpg" alt="Product 2">
                <h3>Product 2</h3>
                <p>Description of Product 2</p>
                <button>Add to Cart</button>
            </div>
            <!-- Add more product divs as needed -->
        </section>
        <section id="about">
            <h2>About Us</h2>
            <p>Description of your dropshipping business.</p>
        </section>
        <section id="contact">
            <h2>Contact Us</h2>
            <p>Contact information goes here.</p>
        </section>
    </main>
    <footer>
        <p>&copy; 2024 Dropshipping Store. All rights reserved.</p>
    </footer>
</body>
</html>
Leave a Comment