-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclock.html
More file actions
32 lines (28 loc) · 833 Bytes
/
clock.html
File metadata and controls
32 lines (28 loc) · 833 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
29
30
31
32
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Live Clock</title>
<link rel="stylesheet" href="clock.css" />
</head>
<body>
<header>
<h1>🕒 Live Clock</h1>
<p>See the current date and time in real time.</p>
</header>
<main class="clock-container">
<div id="clock" class="clock-display">--:--:--</div>
<div id="date" class="date-display">Loading date...</div>
</main>
<footer>
<p><a href="../index.html">⬅ Back to Tools</a></p>
</footer>
<script src="clock.js"></script>
</body>
</html>
<script
src="https://js.sentry-cdn.com/3410730c33a0ed28fc51370949258ba8.min.js"
crossorigin="anonymous"
></script>
<script src="../js/sentry.js"></script>