Join Us

// Set your target date and time (e.g., 2024-07-10 12:00:00)
const targetDate = new Date(“2024-07-05T14:30:00”).getTime();

// Update the countdown timer
function updateTimer() {
const now = new Date().getTime();
const timeLeft = targetDate – now;

if (timeLeft > 0) {
const days = Math.floor(timeLeft / (1000 * 60 * 60 * 24));
const hours = Math.floor((timeLeft % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
const minutes = Math.floor((timeLeft % (1000 * 60 * 60)) / (1000 * 60));
const seconds = Math.floor((timeLeft % (1000 * 60)) / 1000);

document.getElementById(“timer”).textContent = `${days} Day ${hours} hours ${minutes} minutes ${seconds} seconds`;
} else {
document.getElementById(“download-buttonm”).style.display = “block”;
document.getElementById(“timer”).textContent = “প্রশ্ন Download করতে নিচের লিংকে ক্লিক করুন”;
document.getElementById(“bki”).textContent = “Download Link is Ready!”;
}
}

// Update the timer every second
setInterval(updateTimer, 1000);