-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (28 loc) · 1.38 KB
/
index.html
File metadata and controls
31 lines (28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="World Clock Website - View and compare times from cities around the world. Add custom cities, adjust time, and see real-time updates.">
<meta name="keywords" content="world clock, time zones, international time, city times, timezone converter">
<meta name="author" content="World Clock App">
<meta name="theme-color" content="#2c3e50">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:title" content="World Clock - Global Time Zones">
<meta property="og:description" content="View and compare times from cities around the world">
<meta property="og:image" content="/og-image.png">
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="World Clock - Global Time Zones">
<meta name="twitter:description" content="View and compare times from cities around the world">
<meta name="twitter:image" content="/og-image.png">
<title>World Clock - Global Time Zones</title>
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>