-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (34 loc) · 1.48 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta name="author" content="Isaac Daniel Bezerra"/>
<meta name="description" content="Uma landing page de e-commerce"/>
<title>Landing page de E-commerce</title>
<link rel="stylesheet" href="css/style.css"/>
</head>
<body>
<main role="main">
<section id="main__section-banner" role="banner">
</section>
<section id="main__section">
<section id="main__section-form">
<h1 id="main__title">Cadastre-se abaixo para receber promoções com exclusividade!</h1>
<form id="main__form" class="form" action="#">
<label for="txtNome">Nome:</label>
<input type="text" name="nome" id="txtNome" placeholder="Digite o seu nome" required>
<label for="txtEmail">E-mail:</label>
<input type="email" name="email" id="txtEmail" placeholder="Digite o seu melhor e-mail" required>
<button class="form__button" type="submit" onclick="armazenarDados(event)">Quero receber promoções imperdíveis!</button>
</form>
</section>
</section>
</main>
<footer role="contentinfo">
<p>Não perca essa oportunidade!</p>
</footer>
<script src="js/scripts.js"></script>
</body>
</html>