Create New Year 2025 Countdown Code | HTML, CSS, and Javascript

WhatsApp Group Join Now
Telegram Group Join Now
Instagram Group Join Now

In This Post, I’ll give you New Year 2023 Countdown Javascript code so that you can create a Countdown For Happy New Year 2023.

Also, You Can Use This Countdown for your Personal Projects If you need any countdown then you can use this script.

New Year Countdown Code Details

Written ByUnknown
LanguagesHTML, CSS, and JavaScript
ResponsiveYes
Downloading LinkBelow
New Year 2023 Countdown Code Details

HTML Code For New Year Countdown

<div class="timer">
  <div class="box">
    <h2 id="days"></h2>
    <h4>Days</h4>
  </div>
  <div class="box">
    <h2 id="hrs"></h2>
    <h4>Hours</h4>
  </div>
  <div class="box">
    <h2 id="mins"></h2>
    <h4>Minutes</h4>
  </div>
  <div class="box">
    <h2 id="secs"></h2>
    <h4>Seconds</h4>
  </div>
</div>

CSS Code For New Year Countdown

* {
    margin: 0;
    padding: 0;
    font-family: 'Lato Black', sans-serif;
}

body {
    background-color: #0F4C75;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    align-items: center;
}

.timer {
    display: flex;
}

.box {
    position: relative;
    background-color: #FFF;
    color: #1B262C;
    height: 140px;
    width: 140px;
    margin: 4px;
    font-size: 3.2rem;
    text-align: center;
    box-shadow: 2px 12px 18px 4px #333;
}

.box h4 {
    position: absolute;
    bottom: 0;
    background-color: #3282B8;
    width: 100%;
    color: #FFF;
    text-transform: uppercase;
    font-size: 1.4rem;
    padding: 8px 0;
}

Javascript Code For New Year Countdown 2023

var countDownDate = new Date("Jan 1, 2023 00:00: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("days").innerHTML = days;
                
          document.getElementById("hrs").innerHTML = hours;
                
                document.getElementById("mins").innerHTML = minutes;
                
                document.getElementById("secs").innerHTML = seconds;
}, 1000);

Result New Year Countdown 2023

See the Pen Countdown Timer (New Year 2023) by Aqueel Md (@aqueel) on CodePen.

I hope guys you find a working Countdown code for New Year 2023. If You have any suggestions then you can share them with us via the comment section.

Leave a Reply

Your email address will not be published. Required fields are marked *