عرض خاص: التوصيل بالمجان، و الدفع عند الاستلام، اسرع واطلب الآن

عرض خاص: التوصيل بالمجان و الدفع عند الاستلام

اسرع واطلب الآن

slider-image slider-image

عروض خاصة

اعثر على كل ما تريد

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Your Online Store</title>

    <style>

        /* Add your CSS styles here */

        body {

            font-family: Arial, sans-serif;

            margin: 0;

            padding: 0;

            background-color: #f4f4f4;

        }

        header {

            background-color: #333;

            color: #fff;

            padding: 10px;

            text-align: center;

        }

        section {

            padding: 20px;

        }

        /* Add more styles as needed */

    </style>

</head>

<body>

    <header>

        <h1>Your Online Store</h1>

    </header>

    <section>

        <h2>Featured Products</h2>

        <!-- Add product cards or listings here -->

        <div class="product-card">

            <img src="product1.jpg" alt="Product 1">

            <h3>Product 1</h3>

            <p>Description of Product 1. Price: $X.XX</p>

            <button>Add to Cart</button>

        </div>

        <!-- Repeat the product card structure for other products -->

    </section>

    <footer>

        <p>&copy; 2024 Your Online Store. All rights reserved.</p>

    </footer>

</body>

</html>