Update index.html

This commit is contained in:
Kainoa Kanter 2022-03-05 18:59:45 -08:00 committed by GitHub
parent db4b226342
commit b5b6ef5006
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -32,6 +32,21 @@
<!-- Feel free to add more divs here --> <!-- Feel free to add more divs here -->
</div> </div>
</div> </div>
<script src="scr/script.js"></script> <script>
function updateClock() {
let date = new Date();
let hours = date.getHours();
let minutes = date.getMinutes();
let ampm = hours >= 12 ? 'pm' : 'am';
hours = hours % 12;
hours = hours ? hours : 12;
minutes = minutes < 10 ? '0'+minutes : minutes;
let time = hours + ':' + minutes + ' ' + ampm;
document.getElementById('time').innerHTML = time;
setTimeout(updateClock, 1000);
}
updateClock();
</script>
</body> </body>
</html> </html>