code đồng hồ javacript chèn vào website
Master
2024-01-15T17:26:31-05:00
2024-01-15T17:26:31-05:00
https://gianghi.net/index.php?language=vi&nv=news&op=clb-lam-web/code-dong-ho-javacript-chen-vao-website-132.html
https://gianghi.net/uploads/news/2024_01/images-1.png
Vi Tính Gia Nghi
https://gianghi.net/uploads/scmt.png
Thứ hai - 15/01/2024 00:18
<!DOCTYPE html>
<html>
<head>
<title>Đồng hồ</title>
<style>
#clock {
font-size: 48px;
text-align: center;
margin-top: 100px;
}
</style>
</head>
<body>
<div id="clock"></div>
<script>
function displayTime() {
var date = new Date();
var time = date.toLocaleTimeString();
document.getElementById("clock").textContent = time;
}
setInterval(displayTime, 1000); // Cập nhật đồng hồ mỗi giây
</script>
</body>
</html>