-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (34 loc) · 1.24 KB
/
Copy pathindex.html
File metadata and controls
42 lines (34 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Digital Clock</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
<div class="hero">
<div class="container w-auto md:w-[500px] lg:w-[500px]">
<div class="clock w-auto md:w-100 lg:w-100">
<span id="hrs">00</span>
<span>:</span>
<span id="min">00</span>
<span>:</span>
<span id="sec">00</span>
</div>
</div>
</div>
<script>
let hrs=document.getElementById("hrs");
let min=document.getElementById("min");
let sec=document.getElementById("sec");
setInterval(()=>{
let currentTime =new Date();
hrs.innerHTML =(currentTime.getHours()<10?"0":"")+currentTime.getHours();
min.innerHTML =(currentTime.getMinutes()<10?"0":"")+currentTime.getMinutes();
sec.innerHTML =(currentTime.getSeconds()<10?"0":"")+currentTime.getSeconds();
},1000)
</script>
</body>
</html>