This repository was archived by the owner on Jan 27, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (35 loc) · 2.08 KB
/
Copy pathindex.html
File metadata and controls
47 lines (35 loc) · 2.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Neon Digital Clock</title>
<meta name="title" content="Neon Digital Clock">
<meta name="description" content="A modern neon digital clock with glowing effects, animated gradient background, and real-time Vue.js updates.">
<meta name="keywords" content="neon clock, digital clock, vue clock, cyberpunk clock, animated clock, javascript clock, ZarScape">
<meta name="author" content="Muhammad Abuzar ( ZarScape )">
<meta name="theme-color" content="#00f5d4">
<meta property="og:title" content="Neon Digital Clock">
<meta property="og:description" content="A beautiful glowing neon digital clock built with HTML, CSS animations, and Vue.js.">
<meta property="og:type" content="website">
<meta property="og:image" content="https://raw.githubusercontent.com/ZarScape/ZarScape/refs/heads/main/images/ZarScape/github-card.png">
<meta property="og:url" content="https://github.com/ZarScape/neon-clock">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Neon Digital Clock">
<meta name="twitter:description" content="A glowing neon digital clock with animations and real-time Vue.js updates.">
<meta name="twitter:image" content="https://raw.githubusercontent.com/ZarScape/ZarScape/refs/heads/main/images/ZarScape/github-card.png">
<link rel="icon"
href="https://raw.githubusercontent.com/ZarScape/ZarScape/refs/heads/main/images/ZarScape/icon-logo-with-background-rounded.ico"
type="image/x-icon" />
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<script src="https://cdn.jsdelivr.net/npm/vue@2"></script>
</head>
<body>
<div id="clock">
<p class="time">{{ time }}</p>
<p class="date">{{ date }}</p>
</div>
<script src="js/script.js"></script>
</body>
</html>