-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (29 loc) · 812 Bytes
/
index.html
File metadata and controls
31 lines (29 loc) · 812 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
<!DOCTYPE html>
<html>
<head>
<title>Digital Clock - BY NIDHI UPMAN</title>
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
</head>
<body>
<div style="color: white;">
<center>
<h1>Digital Clock - BY NIDHI UPMAN</h1>
</center>
</div>
<div class="clock">
<div>
<p class="heading">Hours</p>
<div id="clock-hours" class="time"></div>
</div>
<div>
<p class="heading">Minutes</p>
<div id="clock-minutes" class="time"></div>
</div>
<div>
<p class="heading">Seconds</p>
<div id="clock-seconds" class="time"></div>
</div>
</div>
</body>
</html>