Zeit zählen bis bestimmtes Datum

So sieht´s aus

Bis zum Datum 14.4.2025 sind es:

Quellcode
<html>
<head>

<style type="text/css">
p {text-align: center; font-size: 1.5em; margin-top: 0px;}
</style>
</head>

<body>
Bis zum Datum 14.4.2025 sind es:
<center><p id="demo"></p>
<script>
var countDownDate = new Date("apr 14, 2025 15:37:25").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 + " Tage " + hours + " Stunden " + minutes + " Minuten und " + seconds + " Sekunden ";
if (distance < 0) {
clearInterval(x);
document.getElementById("demo").innerHTML = "EXPIRED";
}
}, 1000);
</script>
</body>

</html>