eCommerce Products

eCommerce_Products
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta name="description" content="CodeZillaYe - eCommerce Products">
  <title>CodeZillaYe eCommerce Products</title>
  <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet">
</head>
<body class="bg-gray-100">
  <!-- Header -->
  <header class="bg-gray-800 text-white py-4">
    <div class="container mx-auto text-center">
      <h1 class="text-3xl font-bold">CodeZillaYe Products</h1>
    </div>
  </header>

  <!-- Products Section -->
  <section class="container mx-auto py-16">
    <h2 class="text-4xl font-bold text-center mb-12">Our Products</h2>
    <div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-8">

      <!-- Product 1 -->
      <div class="bg-white shadow-lg rounded-lg overflow-hidden">
        <img src="https://via.placeholder.com/300x200" alt="Product 1" class="w-full h-48 object-cover">
        <div class="p-6">
          <h3 class="text-xl font-semibold mb-2">Product 1</h3>
          <p class="text-gray-700 mb-4">This is a great product that you’ll love. It’s made from high-quality materials.</p>
          <div class="mb-4">
            <span class="font-bold">Available Colors:</span>
            <span class="inline-block w-4 h-4 bg-red-500 rounded-full mr-2"></span>
            <span class="inline-block w-4 h-4 bg-blue-500 rounded-full mr-2"></span>
            <span class="inline-block w-4 h-4 bg-green-500 rounded-full"></span>
          </div>
          <button class="bg-green-500 text-white py-2 px-4 rounded hover:bg-green-600 w-full">Add to Cart</button>
        </div>
      </div>

      <!-- Product 2 -->
      <div class="bg-white shadow-lg rounded-lg overflow-hidden">
        <img src="https://via.placeholder.com/300x200" alt="Product 2" class="w-full h-48 object-cover">
        <div class="p-6">
          <h3 class="text-xl font-semibold mb-2">Product 2</h3>
          <p class="text-gray-700 mb-4">Stylish and durable, this product comes in various colors to fit your style.</p>
          <div class="mb-4">
            <span class="font-bold">Available Colors:</span>
            <span class="inline-block w-4 h-4 bg-yellow-500 rounded-full mr-2"></span>
            <span class="inline-block w-4 h-4 bg-purple-500 rounded-full mr-2"></span>
            <span class="inline-block w-4 h-4 bg-orange-500 rounded-full"></span>
          </div>
          <button class="bg-green-500 text-white py-2 px-4 rounded hover:bg-green-600 w-full">Add to Cart</button>
        </div>
      </div>

      <!-- Product 3 -->
      <div class="bg-white shadow-lg rounded-lg overflow-hidden">
        <img src="https://via.placeholder.com/300x200" alt="Product 3" class="w-full h-48 object-cover">
        <div class="p-6">
          <h3 class="text-xl font-semibold mb-2">Product 3</h3>
          <p class="text-gray-700 mb-4">A must-have product with excellent features and a modern design.</p>
          <div class="mb-4">
            <span class="font-bold">Available Colors:</span>
            <span class="inline-block w-4 h-4 bg-pink-500 rounded-full mr-2"></span>
            <span class="inline-block w-4 h-4 bg-teal-500 rounded-full mr-2"></span>
            <span class="inline-block w-4 h-4 bg-gray-500 rounded-full"></span>
          </div>
          <button class="bg-green-500 text-white py-2 px-4 rounded hover:bg-green-600 w-full">Add to Cart</button>
        </div>
      </div>

      <!-- Add more products below -->
      <!-- Product 4 -->
      <div class="bg-white shadow-lg rounded-lg overflow-hidden">
        <img src="https://via.placeholder.com/300x200" alt="Product 4" class="w-full h-48 object-cover">
        <div class="p-6">
          <h3 class="text-xl font-semibold mb-2">Product 4</h3>
          <p class="text-gray-700 mb-4">An amazing product offering high performance and sleek design.</p>
          <div class="mb-4">
            <span class="font-bold">Available Colors:</span>
            <span class="inline-block w-4 h-4 bg-black rounded-full mr-2"></span>
            <span class="inline-block w-4 h-4 bg-white rounded-full mr-2"></span>
            <span class="inline-block w-4 h-4 bg-indigo-500 rounded-full"></span>
          </div>
          <button class="bg-green-500 text-white py-2 px-4 rounded hover:bg-green-600 w-full">Add to Cart</button>
        </div>
      </div>

    </div>
  </section>

  <!-- Footer -->
  <footer class="bg-gray-800 text-white py-6">
    <div class="container mx-auto text-center">
      <p>&copy; 2024 CodeZillaYe. All rights reserved.</p>
    </div>
  </footer>
</body>
</html>

about this design