<div id=”clock-container” style=”text-align: center; margin-top: 60px;”>
<div id=”clock” style=”font-size: 80px; font-weight: bold; font-family: ‘Roboto Mono’, monospace;”></div>
</div>
<script>
function updateClock() {
const now = new Date();
const timeString = now.toLocaleTimeString(‘en-AU’, { hour12: false });
document.getElementById(‘clock’).textContent = timeString;
}
setInterval(updateClock, 1000);
updateClock();
</script>