-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclock.html
More file actions
37 lines (33 loc) · 1.15 KB
/
Copy pathclock.html
File metadata and controls
37 lines (33 loc) · 1.15 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
<!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>
</head>
<link rel="stylesheet" href="style.css">
<body>
<div class="navbar">
<ul class="navul">
<li class="navlist"><a href="first.html">HomePage</a></li>
<li class="navlist"><a href="todo.html">To-Do List</a></li>
<li class="navlist"><a href="weather.html">Weather</a></li>
<li class="navlist"><a href="calc.html">Calculator</a></li>
<li class="navlist"><a href="clock.html">Digital Clock</a></li>
<li class="navlist"><a href="quoteGenerator.html">Quote Generator</a></li>
</ul>
</div>
<div class="about">
<h2>DIGITAL CLOCK!</h2>
<p>used JS for fetching the time and updating it in 1s interval. </p>
</div>
<div id="clock">
<span id="hrs">00</span>
<span>:</span>
<span id="mins">00</span>
<span>:</span>
<span id="secs">00</span>
</div>
<script src="script.js"></script>
</body>
</html>