-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclock.html
More file actions
28 lines (26 loc) · 923 Bytes
/
clock.html
File metadata and controls
28 lines (26 loc) · 923 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Digital Clock</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@600&family=Roboto+Mono:wght@700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="Dclock.css">
</head>
<body>
<div class="clock">
<div class ="time">
<div id="hour">00</div>
<span>:</span>
<div id="minute">00</div>
<span>:</span>
<div id="seconds">00</div>
</div>
<div class="buttons">
<button onclick="dtFunction()" id="date">Date</button>
<a href="stopwatch.html"><button id="stopwatch">Stopwatch</button></a>
<a href="analogClock.html"><button id="analog">Analog Clock</button></a>
</div>
</div>
<script src="Dclock.js"></script>
</body>
</html>