ეს საიტი ჩვენი მოგონებების პატარა კუთხეა. ყოველი ფოტო, ყოველი წუთი და ყოველი დღე შენთან ჩემთვის ყველაზე ძვირფასია.
const startDate = new Date("2025-10-01:00:00"); setInterval(function(){ const now = new Date(); const diff = now - startDate; const days = Math.floor(diff / (1000*60*60*24)); const hours = Math.floor(diff / (1000*60*60)) % 24; const minutes = Math.floor(diff / (1000*60)) % 60; const seconds = Math.floor(diff / 1000) % 60; document.getElementById("timer").innerHTML = days + " დღე " + hours + " საათი " + minutes + " წუთი " + seconds + " წამი ❤️"; },1000); function playMusic(){ document.getElementById("music").play(); }