<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<meta name="description" content="14 Mayıs 2023 saat 08:00Türkiye Genel Seçimi geri sayım sayacı" />
<meta name="keywords" content="14 Mayıs 2023, Türkiye Genel Seçimi, geri sayım sayacı " />
<meta name="title" content="14 Mayıs 2023 Türkiye Genel Seçimi geri sayım sayacı "/>
<div class="container">
<!--31 Mart 2024 yerel (belediye) seçimleri -->
<div class="row">
<div class="my-4">
<strong><p id="demo" class="well well-lg" style="background-color:yellow;padding:20px; font-family: 'Oswald', sans-serif;font-size:60px;border-radius:15px" ></p></strong>
<div class="alert alert-warning" >
7 Mayıs 2028 Türkiye Seçimleri geri sayım sayacı( 25 Mart 2029 tarihinde de Belediye Seçimleri yapılacak.)
</div>
</div>
</div>
</div>
// Set the date we're counting down to
//Yerel seçimler yani belediye seçimleri 31 Mart 2024
var countDownDate = new Date("may 7, 2028 08:00:00").getTime();
// Update the count down every 1 second
var x = setInterval(function() {
// Get today's date and time
var now = new Date().getTime();
// Find the distance between now and the count down date
var distance = countDownDate - now;
// Time calculations for days, hours, minutes and seconds
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);
// Output the result in an element with id="demo"
document.getElementById("demo").innerHTML = "7 Mayıs 2028 saat 08:00'de yapılacak Genel seçimlere; <br> "+ days + " gün " + hours + " saat "
+ minutes + " dakika " + seconds + " saniye kaldı.";
// If the count down is over, write some text
if (distance < 0) {
clearInterval(x);
document.getElementById("demo").innerHTML = "EXPIRED";
}
}, 1000);