-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
80 lines (76 loc) · 3.62 KB
/
Copy pathindex.html
File metadata and controls
80 lines (76 loc) · 3.62 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="keywords" content="analog clock, digital clock, javascript clock, real-time clock, responsive clock, web clock, animated clock, HTML CSS JS project, modern UI clock, live time display">
<meta name="description" content="Minimal analog & digital clock — responsive, lightweight, animated hands. Live demo by Umair Shakoor.">
<title>Analog & Digtal Clock - Umair Shakoor</title>
<!-- Preloading Styles -->
<link rel="preload" href="styles.css" as="style">
<link rel="preload" href="https://fonts.googleapis.com/css2?family=Quicksand:wght@400&display=swap" as="style">
<!-- Linking Styles -->
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Quicksand:wght@400&display=swap">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/unseenumair/universal-signature@main/styles.css">
<!-- Fav -->
<link rel="icon" type="image/png" href="assets/fav/favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/svg+xml" href="assets/fav/favicon.svg" />
<link rel="shortcut icon" href="assets/fav/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="assets/fav/apple-touch-icon.png" />
<meta name="apple-mobile-web-app-title" content="Clock" />
<link rel="manifest" href="assets/fav/site.webmanifest" />
<!-- Canonical URL -->
<link rel="canonical" href="https://unseenumair.github.io/clock/">
<!-- Open Graph (Facebook, LinkedIn, Discord, etc.) -->
<meta property="og:title" content="Analog & Digital Clock — Umair Shakoor">
<meta property="og:description" content="Minimal analog & digital clock with smooth animations and responsive UI.">
<meta property="og:url" content="https://unseenumair.github.io/clock/">
<meta property="og:type" content="website">
<meta property="og:image" content="https://unseenumair.github.io/clock/assets/og-image.jpg">
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Analog & Digital Clock — Umair Shakoor">
<meta name="twitter:description" content="Minimal analog & digital clock with smooth animations and responsive UI.">
<meta name="twitter:image" content="https://unseenumair.github.io/clock/assets/og-image.jpg">
<!-- JSON-LD -->
<script type="application/ld+json">
{
"@context":"https://schema.org",
"@type":"WebApplication",
"name":"Analog & Digital Clock",
"url":"https://unseenumair.github.io/clock/",
"author":{"@type":"Person","name":"Umair Shakoor","url":"https://unseenumair.github.io/"},
"description":"Minimal analog and digital clock demo."
}
</script>
</head>
<body class="center">
<main class="center">
<section class="center" id="analogClock">
<div class="show" id="analogHours"></div>
<div class="show" id="analogMinutes"></div>
<div class="show" id="analogSeconds"></div>
</section>
<section class="center" id="digitalClock">
<div class="center mark" id="digitalHours">00</div>
<div class="center" id="digitalDots">
<span></span>
<span></span>
</div>
<div class="center mark" id="digitalMinutes">00</div>
<div class="center" id="digitalSeconds">00</div>
<div class="center mark" id="AmPm">PM</div>
</section>
</main>
<!-- JS -->
<script src="script.js" defer></script>
<script
src="https://cdn.jsdelivr.net/gh/unseenumair/universal-signature@main/script.js"
data-position='["top","right"]'
data-offset='["20px","15px"]'
data-color="white"
data-bg="linear-gradient(to bottom left, darkblue, transparent)">
</script>
</body>
</html>