1111Courier

Reviews (0)
0 0 5
888 1,200
-26%
JPG
Share: 

<div style="max-width: 100%; overflow-x: auto; font-family: 'Segoe UI', sans-serif;">
  <table border="1" cellspacing="0" cellpadding="12" style="width:100%; border-collapse: collapse; font-size: 15px;">
    <thead style="background-color: #f2f2f2;">
      <tr>
        <th style="text-align:center;">Add to Chat</th>
        <th style="text-align:left;">Product</th>
        <th style="text-align:center;">Preview</th>
        <th style="text-align:center;">Price (USD)</th>
        <th style="text-align:center;">Details</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td style="text-align: center;"><input type="checkbox" class="product-checkbox" data-price="39"></td>
        <td>
          <strong>Product Catalog</strong><br>
          A robust catalog management system.<br>
          Organize and display items professionally.<br>
          Enterprise-grade categorization support.<br>
          Seamlessly integrated with frontend logic.
        </td>
        <td style="text-align:center;"><img src="https://img.icons8.com/fluency/48/product.png" alt="Product Catalog Icon" style="width:48px; height:48px;"></td>
        <td style="text-align:center;">$39</td>
        <td style="text-align:center;"><a href="https://workdo.io/product/product-catalog/" target="_blank">View Details</a></td>
      </tr>

      <tr>
        <td style="text-align: center;"><input type="checkbox" class="product-checkbox" data-price="69"></td>
        <td>
          <strong>Seller Apps (Mobile)</strong><br>
          Complete Android/iOS integration tools.<br>
          Engage mobile sellers with intuitive UI.<br>
          Sync inventory, chats, and orders in real-time.<br>
          Designed for high-volume enterprise operations.
        </td>
        <td style="text-align:center;"><img src="https://img.icons8.com/fluency/48/mobile-app.png" alt="Mobile App Icon" style="width:48px; height:48px;"></td>
        <td style="text-align:center;">$69</td>
        <td style="text-align:center;"><a href="https://workdo.io/product/seller-apps-mobile/" target="_blank">View Details</a></td>
      </tr>

      <tr>
        <td style="text-align: center;"><input type="checkbox" class="product-checkbox" data-price="15"></td>
        <td>
          <strong>Multi-language System</strong><br>
          Expand globally with full language support.<br>
          Built-in RTL/LTR and dynamic translation.<br>
          Boost user experience for local markets.<br>
          Tailored for multilingual SaaS platforms.
        </td>
        <td style="text-align:center;"><img src="https://img.icons8.com/fluency/48/translation.png" alt="Language Icon" style="width:48px; height:48px;"></td>
        <td style="text-align:center;">$15</td>
        <td style="text-align:center;"><a href="https://workdo.io/product/multi-language-system/" target="_blank">View Details</a></td>
      </tr>
    </tbody>
    <tfoot>
      <tr style="background-color:#f9f9f9;">
        <td colspan="3" style="text-align:right; font-weight:bold;">Total Selected:</td>
        <td colspan="2" id="total-price" style="font-weight:bold; text-align:center;">$0</td>
      </tr>
    </tfoot>
  </table>
</div>

<script>
  function updateTotal() {
    let total = 0;
    document.querySelectorAll('.product-checkbox').forEach(cb => {
      if (cb.checked) {
        total += parseFloat(cb.getAttribute('data-price'));
      }
    });
    document.getElementById('total-price').textContent = '$' + total.toFixed(2);
  }

  document.querySelectorAll('.product-checkbox').forEach(cb => {
    cb.addEventListener('change', updateTotal);
  });
</script>

No reviews found!

No comments found for this product. Be the first to comment!

This site uses cookies. By continuing to browse the site, you are agreeing to our use of cookies.