-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
72 lines (66 loc) · 3.14 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<!-- Primary Meta Tags -->
<title>New Year Timer</title>
<meta name="title" content="New Year Timer" />
<meta name="description"
content="This is a simple new year timer. Count the remaining days to the next year. Made by - Akkshay Tandon." />
<meta name="keywords"
content="akkshay tandon, new year timer, new year countdown, countdown to new year, akkshay tandon new-year-timer, next year time remaining">
<meta name="author" content="Akkshay Tandon">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://akkshaytandon-new-year-timer.netlify.app/" />
<meta property="og:title" content="New Year Timer" />
<meta property="og:description"
content="This is a simple new year timer. Count the remaining days to the next year. Made by - Akkshay Tandon." />
<meta property="og:image"
content="https://raw.githubusercontent.com/akkshayTandon/new-year-timer/refs/heads/main/new-year-timer.png" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://akkshaytandon-new-year-timer.netlify.app/" />
<meta property="twitter:title" content="New Year Timer" />
<meta property="twitter:description"
content="This is a simple new year timer. Count the remaining days to the next year. Made by - Akkshay Tandon." />
<meta property="twitter:image"
content="https://raw.githubusercontent.com/akkshayTandon/new-year-timer/refs/heads/main/new-year-timer.png" />
<!-- Meta Tags Generated with https://metatags.io -->
<!-- <title>New Year Timer</title> -->
<link href="https://fonts.googleapis.com/css?family=Baloo+Bhai&display=swap" rel="stylesheet">
<link href="style.css" rel="stylesheet" type="text/css" />
<link rel="shortcut icon" href="new-year-timer.png" type="image/x-icon">
<!-- <link href="responsive.css" rel="stylesheet" type="text/css" /> -->
</head>
<body>
<section class="coming-soon">
<div class="container">
<h2>CountDown to 2025 !!</h2>
<div class="countdown">
<div class="container-day">
<h3 class="day">Time</h3>
<h3>Day</h3>
</div>
<div class="container-hour">
<h3 class="hour">Time</h3>
<h3>Hour</h3>
</div>
<div class="container-minute">
<h3 class="minute">Time</h3>
<h3>Minute</h3>
</div>
<div class="container-second">
<h3 class="second">Time</h3>
<h3>Second</h3>
</div>
</div>
</div>
<iframe src="audio/silence.mp3" allow="autoplay" style="display: none" frameborder="0"></iframe>
<audio id="audio" autoplay>
<source src="audio/sound.mp3" type="audio/mp3">
</audio>
<script src="script.js"></script>
</body>
</html>