-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (50 loc) · 2.08 KB
/
index.html
File metadata and controls
55 lines (50 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
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- displays site properly based on user's device -->
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<title>Frontend Mentor | Launch countdown timer</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Red+Hat+Text:wght@700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="wrapper-app">
<main class="wrapper-countdown">
<h1> We're launching soon</h1>
<section class="countdown">
<div class="container-days">
<h3 class="days">Time</h3>
<h3>Days</h3>
</div>
<div class="container-hours">
<h3 class="hours">Time</h3>
<h3>Hours</h3>
</div>
<div class="container-minutes">
<h3 class="minutes">Time</h3>
<h3>Minutes</h3>
</div>
<div class="container-seconds">
<h3 class="seconds">Time</h3>
<h3>Seconds</h3>
</div>
</section>
</main>
<footer>
<section class="footer-icons">
<a href="#"> <img alt="icon-facebook" src="images/icon-facebook.svg" /></a>
<a href="#"> <img alt="icon-pinterest" src="images/icon-pinterest.svg" /></a>
<a href="#"> <img alt="icon-instagram" src="images/icon-instagram.svg" /></a>
</section>
<section class="footer-attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>. Coded by <a href="https://github.com/klara-pavlov">Klara Pavlov</a>.
</section>
</footer>
</div>
<script src="script.js"></script>
</body>
</html>