Online Web Clock

Online Web Clock

2025-03-23. Category & Tags: Soft&Skills Soft&Skills

https://uutool.cn/clock/

https://www.idcd.com/tool/time/53

https://www.metools.info/other/time189.html

<body>
<center>
<span id = "date" style = "color:darkblue; font-size:150px;"></span>
</br>
<span id = "time" style = "color:darkblue; font-size:400px;"></span>
</center>
</body>
<script type = "text/javascript">
window.onload = function () {
	setTime();
	setInterval(setTime,1000);
}

function setTime() {
	var newDate = new Date();
	document.getElementById('date').innerHTML = newDate.toISOString().substring(0, 10); // toISOString is in ms
	document.getElementById('time').innerHTML = newDate.toLocaleTimeString();
}
</script>