buildHtml
favicon favicon.png
title Start
metaTags
style.css
script
function updateClock() {
const now = new Date();
const options = {
weekday: 'long',
year: 'numeric',
month: 'long',
day: 'numeric'
};
const time = now.toLocaleDateString('en-US', options);
document.getElementById('clock').textContent = time;
}
updateClock();