From 4d88d9b5059763d0d4bde7215bb7e0827ae7d054 Mon Sep 17 00:00:00 2001 From: scrubware <68521172+scrubware@users.noreply.github.com> Date: Tue, 6 Sep 2022 17:07:19 -0600 Subject: [PATCH] Update index.html --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 63ac8f9..a4e9dac 100644 --- a/index.html +++ b/index.html @@ -26,8 +26,8 @@ var seconds = Math.floor((distance % (1000 * 60)) / 1000); // Display the result in the element with id="demo" - document.getElementById("demo").innerHTML = days + "days, " + hours + "hours " - + minutes + "minutes, and " + seconds + "seconds."; + document.getElementById("demo").innerHTML = days + " days, " + hours + " hours " + + minutes + " minutes, and " + seconds + " seconds."; // If the count down is finished, write some text if (distance < 0) {