-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (51 loc) · 2.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<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=Poppins:wght@300;400;500&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="styles.css">
<script src="script.js" defer></script>
<title>Desafio Discover | Countdown</title>
</head>
<body>
<div class="container">
<div class="content">
<div class="countdown">
<h1 class="countdown-title" id="countdown-title">Ready to launch in...</h1>
<div class="timer" id="timer">
<div class="days">
<span class="timer-label">Dias</span>
<p class="timer-value" id="daysLeft">08</p>
</div>
<p class="countdown-separator">:</p>
<div class="hours">
<span class="timer-label">Horas</span>
<p class="timer-value" id="hoursLeft">12</p>
</div>
<p class="countdown-separator">:</p>
<div class="minutes">
<span class="timer-label">Minutos</span>
<p class="timer-value" id="minutesLeft">44</p>
</div>
<p class="countdown-separator">:</p>
<div class="seconds">
<span class="timer-label">Segundos</span>
<p class="timer-value" id="secondsLeft">28</p>
</div>
</div>
<span class="countdown-description">Inscreva-se para saber mais sobre o lançamento</span>
<button class="countdown-button">Inscreva-se</button>
</div>
<div class="rocket">
<img src="images/rocket.svg" alt="Imagem de um foguete">
</div>
</div>
<img class="top-wave" src="images/top-image.svg" alt="top wave">
<img class="bottom-wave" src="images/bottom-image.svg" alt="bottom wave">
</div>
</body>
</html>