-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
93 lines (90 loc) · 2.9 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html lang="en">
<head>
<link
href="https://fonts.googleapis.com/css?family=Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic"
rel="stylesheet"
/>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Countdown</title>
<link rel="stylesheet" href="./css/variables.css" />
<link rel="stylesheet" href="./css/main.css" />
</head>
<body>
<main>
<div id="container">
<div id="timer-content">
<div id="countdown">
<h2 id="countdown-header">Ready to launch in...</h2>
<div id="timer">
<p id="timer-display">
<span class="time" id="days"></span>:<span
class="time"
id="hours"
></span
>:<span class="time" id="minutes"></span>:<span
class="time"
id="seconds"
></span>
</p>
</div>
</div>
<div id="description">
<p>Inscreva-se para saber mais sobre o lançamento</p>
<a id="subscribe" class="button" href="#">Inscreva-se</a>
</div>
</div>
<img id="top-image" src="./images/top-image.svg" alt="Top image" />
<div id="main-image">
<img id="rocket-image" src="./images/rocket.svg" alt="Rocket Image" />
</div>
<img
id="bottom-image"
src="./images/bottom-image.svg"
alt="Bottom image"
/>
</div>
<div id="modal">
<form id="form">
<div id="close-button">
<button class="close-modal">X</button>
</div>
<div id="input-area">
<div id="username-area">
<label class="label" for="username">Nome:</label>
<input
type="text"
name="username"
id="username"
required
autocomplete="off"
/>
</div>
<div id="email-area">
<label class="label" for="email">E-mail:</label>
<input
type="email"
name="email"
id="email"
required
autocomplete="off"
/>
</div>
<div id="button-area">
<button class="submit-button" type="button">Enviar</button>
</div>
</div>
</form>
<div class="message" id="success-submit">
<h4>Enviado com sucesso!</h4>
</div>
<div class="message" id="error-submit">
<h4>Preencha todos os campos!</h4>
</div>
</div>
</main>
<script src="./js/main.js"></script>
</body>
</html>