-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (36 loc) · 1019 Bytes
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Digital Clock</title>
</head>
<body>
<div class="digital-clock-container">
<div class="time-display">
<div class="hours">
<h3 id="display-hours">
00
</h3>
</div>
<span class="separator">:</span>
<div class="minutes">
<h3 id="display-minutes">
00
</h3>
</div>
</div>
<div class="time-info">
<div class="period">
<h5 id="display-period"></h5>
</div>
<div class="seconds">
<h5 id="display-seconds"></h5>
</div>
</div>
</div>
<script src="clock.js"></script>
</body>
</html>