-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (26 loc) · 977 Bytes
/
index.html
File metadata and controls
26 lines (26 loc) · 977 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
<!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>
<link href="clock icon.png" rel=icon>
<link href="style.css" type="text/css" rel="stylesheet">
<script src="clock.js"></script>
</head>
<body>
<div class="container">
<section><h3>THE TIME IS NOW</h3></section>
<div class="hours-bottom-part">
<section class="hours-top-part" ><p1 id="hours">00</p1><p2>HOURS</p2></section>
</div>
<div class="minutes-bottom-part">
<section class="minutes-top-part"><p1 id="minutes">00</p1><p3>MINUTES</p3></section>
</div>
<div class="seconds-bottom-part">
<section class="seconds-top-part"><p1 id="seconds">00</p1><p3>SECONDS</p3></section>
</div>
<div class="meridian-part"><p id="ampm">AM</p></div>
</div>
</body>
</html>