<!--doctype html--> <style> /* Product Box Styling */ .apna-product-box { max-width: 400px; margin: 20px auto; padding: 20px; border: 1px solid #ddd; border-radius: 10px; text-align: center; font-family: Arial; background: white; box-shadow: 0 2px 10px rgba(0,0,0,0.1); } .apna-product-box img { width: 100%; border-radius: 8px; margin-bottom: 15px; height: 200px; object-fit: contain; } .apna-product-title { font-size: 22px; font-weight: bold; margin: 10px 0; color: #333; } .apna-product-price { font-size: 20px; color: green; margin-bottom: 15px; font-weight: bold; } /* Star Rating (4.4/5) */ .apna-rating-container { display: inline-block; position: relative; font-size: 24px; margin: 10px 0; } .apna-stars-empty { color: #e0e0e0; letter-spacing: 3px; } .apna-stars-filled { color: #ffcc00; position: absolute; top: 0; left: 0; width: 88%; /* 4.4/5 = 88% */ overflow: hidden; white-space: nowrap; letter-spacing: 3px; } /* Buy Button */ .apna-buy-btn { background: #25D366; color: white; padding: 12px 25px; border-radius: 5px; text-decoration: none; display: inline-block; font-weight: bold; margin-top: 15px; border: none; cursor: pointer; font-size: 16px; } </style> <div class="apna-product-box"> <img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiiMKmMM-8383QmCUwiMdLuceZTnEB1Aaqx8Uki7IoN86bH-V1-JDdD_j7mSN0xtRaVVidA-jBAIlFsehscCNDiZYA_9jfKqgqrwGS7CdukApDQ4AGqXgd_hjGG1dnkt611u2j1TKIHdEYrhMmwSM6J2YlxgV8S2xSdKNPJsvnTr45bF0BCKDa64GbLWrZs/s1600/Bakhoor.jpg" /> <div class="apna-product-title" id="product-title">Bakhoor (OUD)</div> <div class="apna-product-price" id="product-price">₹2,499</div> <!-- Star Rating (4.4/5) --> <div class="apna-rating-container"> <div class="apna-stars-empty">★★★★★</div> <div class="apna-stars-filled">★★★★★</div> </div> <a class="apna-buy-btn" href="#" id="whatsapp-btn" target="_blank">Buy on WhatsApp</a> </div> <script> // WhatsApp Function function setupWhatsApp() { const product = document.getElementById('product-title').innerText; const price = document.getElementById('product-price').innerText; const phone = "18507862021"; // ISME APNA NUMBER DALO (+91 ke bina) const message = `Namaste! 👋\n\nI want to buy:\n\n*Product:* ${product}\n*Price:* ${price}\n*Rating:* 4.4★/5\n\nPlease confirm availability.`; const encoded = encodeURIComponent(message); const whatsappBtn = document.getElementById('whatsapp-btn'); whatsappBtn.href = `https://wa.me/${phone}?text=${encoded}`; console.log("WhatsApp Link Generated:", whatsappBtn.href); // Debugging ke liye } // Page Load Pe Run Karega document.addEventListener('DOMContentLoaded', function() { setupWhatsApp(); }); </script> </!doctype>
No comments:
Post a Comment