🔥 BUY MORE SAVE MORE 🔥
Buy 1 & GET ₹100 OFF
Buy 2 & GET ₹200 OFF
Buy 3 & GET ₹300 OFF
Buy 4 & GET ₹420 OFF
Buy 5 & GET ₹600 OFF
Limited Time Only ⏳
<!-- COUPON CODE BLOCK -->
<div class="coupon-container">
<span id="couponCode">SAVE10</span>
<button onclick="copyCoupon()" class="copy-btn">Copy Code</button>
</div>
<style>
.coupon-container {
display: flex;
align-items: center;
gap: 10px;
font-family: sans-serif;
font-size: 18px;
margin-top: 10px;
}
.copy-btn {
background-color: #000;
color: #fff;
border: none;
padding: 6px 12px;
border-radius: 5px;
cursor: pointer;
}
.copy-btn:hover {
background-color: #444;
}
</style>
<script>
function copyCoupon() {
var code = document.getElementById("couponCode").innerText;
navigator.clipboard.writeText(code).then(function() {
alert("Coupon code copied: " + code);
}, function(err) {
console.error('Could not copy text: ', err);
});
}
</script>