JS Countdown Timer

Pure HTML + JavaScript Countdown Timer

by Good Muyis

HTML

<p id="demo" style="color: #000;font-family: 'Inter';font-weight: 700;font-style: normal;font-size: 33px;text-align: left;padding: 10px;margin-top: 0px;"></p>


<script>
var countDownDate = new Date("Jan 25, 2022 13:30:00").getTime();

var x = setInterval(function() {
  var now = new Date().getTime();
  var distance = countDownDate - now;

  var 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);

  document.getElementById("demo").innerHTML = days + "d " + hours + "h "
  + minutes + "m " + seconds + "s ";

  if (distance < 0) {
    clearInterval(x);
    document.getElementById("demo").innerHTML = "Lunching website in few munites...";
  }
}, 1000);
</script>