-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
87 lines (79 loc) · 2.92 KB
/
index.html
File metadata and controls
87 lines (79 loc) · 2.92 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
85
86
87
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Red+Hat+Text:wght@300;400;500;600;700&display=swap"
rel="stylesheet">
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<title>Frontend Mentor | Launch countdown timer</title>
<link rel="stylesheet" href="./CSS/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css"
integrity="sha512-1ycn6IcaQQ40/MKBW2W4Rhis/DbILU74C1vSrLJxCq57o941Ym01SwNsOMqvEBFlcgUa6xLiPY/NS5R+E6ztJQ=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<script src="index.js" defer></script>
</head>
<body>
<main>
<!-- Counter component -->
<div class="component">
<h1 class="title">We're launching soon</h1>
<div class="counter">
<div class="counter-item">
<div class="flip-card number" id="days" data-days>
<span class="top-number ">00</span>
<span class="bottom-number ">00</span>
</div>
<div class="words">days</div>
</div>
<div class="counter-item">
<div class="flip-card number" id="hours" data-hours>
<span class="top-number">00</span>
<span class="bottom-number">00</span>
</div>
<div class="words">hours</div>
</div>
<div class="counter-item">
<div class="flip-card number" id="minutes" data-minutes>
<span class="top-number">00</span>
<span class="bottom-number">00</span>
</div>
<div class="words">minutes</div>
</div>
<div class="counter-item">
<div class="flip-card number" id="seconds" data-seconds>
<span class="top-number">00</span>
<span class="bottom-number">00</span>
</div>
<div class="words">seconds</div>
</div>
</div>
</div>
</main>
<footer>
<ul class="social-links">
<li>
<a href="https://www.facebook.com/rotimi.ishola" target="_blank" class="icon">
<i class="fab fa-facebook"></i>
</a>
</li>
<li>
<a href="https://github.com/Timiphil" target="_blank" class="icon">
<i class="fab fa-pinterest"></i>
</a>
</li>
<li>
<a href="https://github.com/Timiphil" target="_blank" class="icon">
<i class="fab fa-instagram"></i>
</a>
</li>
</ul>
<div class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="https://github.com/Timiphil" target="_blank">Timiphil</a>.
</div>
</footer>
</body>
</html>