-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
84 lines (77 loc) · 2.23 KB
/
index.html
File metadata and controls
84 lines (77 loc) · 2.23 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
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ClockDock</title>
<meta
name="description"
content="ClockDock is a minimal, full-screen ambient clock designed to be left open, featuring subtle motion, curated facts, and an interactive gravity-based experience."
/>
<!-- Open Graph / Social Preview -->
<meta property="og:title" content="ClockDock" />
<meta
property="og:description"
content="A calm, full-screen ambient clock with subtle motion, curated facts, and interactive gravity. Designed to be left open."
/>
<meta property="og:type" content="website" />
<meta property="og:url" content="https://cd.jayeshrocks.com" />
<meta
property="og:image"
content="https://github.com/JayeshRocks/ClockDock/ClockDock.png"
/>
<meta name="theme-color" content="#05070d" />
<link rel="stylesheet" href="style.css" />
<!-- Favicons -->
<link
rel="icon"
type="image/png"
sizes="16x16"
href="icons/icons8-clock-bubbles-16.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="icons/icons8-clock-bubbles-32.png"
/>
<link
rel="icon"
type="image/png"
sizes="96x96"
href="icons/icons8-clock-bubbles-96.png"
/>
<!-- Apple Touch Icons -->
<link
rel="apple-touch-icon"
sizes="57x57"
href="icons/icons8-clock-bubbles-57.png"
/>
<link
rel="apple-touch-icon"
sizes="60x60"
href="icons/icons8-clock-bubbles-60.png"
/>
<link
rel="apple-touch-icon"
sizes="72x72"
href="icons/icons8-clock-bubbles-72.png"
/>
<link
rel="apple-touch-icon"
sizes="76x76"
href="icons/icons8-clock-bubbles-76.png"
/>
<meta name="theme-color" content="#05070d" />
</head>
<body>
<div id="hint">Tap to enter fullscreen</div>
<div id="bg"></div>
<div id="app">
<div id="clock"></div>
<div id="fact"></div>
</div>
<div id="cursor"></div>
<script src="script.js"></script>
</body>
</html>