fix spelling errors

This commit is contained in:
Boof 2023-05-19 14:03:17 +02:00 committed by GitHub
parent 62ae6efea9
commit 906b83058d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@
<div style="text-align: center;">
<p>If you were born on the 8th of June 2009 you would be</p>
<h3 id="age"></h3>
<p>And you birthday would be in</p>
<p>And your birthday would be in</p>
<div id="countdown"></div>
</div>
</body>

View File

@ -21,7 +21,7 @@ function countdownTimer() {
const seconds = Math.floor((timeRemaining % (1000 * 60)) / 1000);
const countdownDiv = document.getElementById("countdown");
countdownDiv.innerHTML = days + " days, " + hours + " hours, " + minutes + " minutes, " + seconds + " seconds";
countdownDiv.innerHTML = days + " days, " + hours + " hours, " + minutes + " minutes and " + seconds + " seconds";
}
// Call the countdownTimer() function every second using setInterval