-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
76 lines (70 loc) · 3.13 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
73
74
75
76
<!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="A birthday countdown application which automatically updates for every year">
<meta property="og:title " content="A birthday countdown timer">
<meta property="og:description"
content="A birthday countdown application which automatically updates for every year">
<meta property="og:image" content="https://github.com/wisac/birthday-countdown/blob/main/images/picture.jpg?raw=true">
<meta property="og:url" content="https://wisac.github.io/birthday-countdown/">
<title>My Birthday Countdown</title>
<link rel="stylesheet" href="src/style.css" />
<link rel="icon" href="images/favicon.ico" />
<script src="src/qoutes.js"></script>
<script defer src="src/main.js"></script>
</head>
<body>
<main style="
background-image: url('https://img.gs/jqhspclgkm/1920/https://github.com/wisac/birthday-countdown/blob/main/images/eberhard-grossgasteiger-kSfSAk5l4HQ-unsplash.jpg?raw=true');
">
<div class="overlay-container">
<div class="title-container">
<h3 class="title">MY BIRTHDAY INCOMING</h3>
<h4 class="date">Lorem, 00 Lorem 2023</h4>
</div>
<div class="profile-container">
<div class="outer-circle">
<div class="inner-circle">
<div class="picture" style="
background-image: url('images/2024.jpg');
"></div>
</div>
</div>
</div>
<div class="time-container">
<div class="day-box time-hand-card">
<h1 class="time-hand-time day-hand"></h1>
<h2 class="time-hand-label">DAY</h2>
</div>
<h1 class="time-hand-divider">:</h1>
<div class="hrs-box time-hand-card">
<h1 class="time-hand-time hrs-hand"></h1>
<h2 class="time-hand-label">HRS</h2>
</div>
<h1 class="time-hand-divider">:</h1>
<div class="min-box time-hand-card">
<h1 class="time-hand-time min-hand"></h1>
<h2 class="time-hand-label">MIN</h2>
</div>
<h1 class="time-hand-divider">:</h1>
<div class="sec-box time-hand-card">
<h1 class="time-hand-time sec-hand"></h1>
<h2 class="time-hand-label">SEC</h2>
</div>
</div>
<div class="message-container">
<p class="message">
Wear gratitude like a cloak, and it will feed every corner of your life. — Rumi
</p>
</div>
<div class="button-container">
<button class="wish-me-btn">WISH ME</button>
<p class="wish-status"></p>
</div>
</div>
<!--Overlay-container-->
</main>
</body>
</html>