-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (35 loc) · 1.38 KB
/
Copy pathindex.html
File metadata and controls
40 lines (35 loc) · 1.38 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
38
39
40
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Local Time Display</title>
<meta name="author" content="Gaurav J">
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
</head>
<body>
<div class="container">
<div class="title-box">
<h1>Your Current Local Time</h1>
</div>
<div class="time-box">
<div class="time-container">
<div class="time-label">12-Hour Clock</div>
<div id="time-12" class="time"></div>
</div>
<div class="time-container">
<div class="time-label">24-Hour Clock</div>
<div id="time-24" class="time"></div>
</div>
</div>
<div id="date-container" class="date-container"></div>
</div>
<footer>
<a href="https://www.linkedin.com/in/bitwisebro" target="_blank"><i class="fab fa-linkedin fa-2x"></i></a>
<a href="https://github.com/bitwisebro/mylocaltime" target="_blank"><i class="fab fa-github fa-2x"></i></a>
</footer>
<script src="script.js"></script>
</body>
</html>