<div style="font-size: 36px; color: #ff0000; background-color: #232222"><span id="countdown"></span></div><script>// Set the date we're counting down tovar countDownDate =newDate("Dec 30, 2023 00:00:00").getTime();// Update the countdown every 1 secondvar x =setInterval(function(){// Get today's date and timevar now =newDate().getTime();// Find the distance between now and the count down datevar distance = countDownDate - now;// Time calculations for days, hours, minutes and secondsvar days = Math.floor(distance /(1000*60*60*24));var hours = Math.floor((distance %(1000*60*60*24))/(1000*60*60));var minutes = Math.floor((distance %(1000*60*60))/(1000*60));var seconds = Math.floor((distance %(1000*60))/1000);// Display the countdown
document.getElementById("countdown").innerHTML =
days +"d "+ hours +"h "+ minutes +"m "+ seconds +"s ";// If the countdown is finished, write some textif(distance <0){clearInterval(x);
document.getElementById("countdown").innerHTML ="EXPIRED";}},1000);</script>