-
Notifications
You must be signed in to change notification settings - Fork 1
/
formulario.html
66 lines (63 loc) · 1.28 KB
/
formulario.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<title>Insurtech News</title>
<meta charset="utf-8">
<style>
.container {
background-color: #A9A9A9;
}
.inscreva {
background-color: #87CEFA;
width: 700px;
margin: 0 auto;
height:300px;
}
.botaoinscrever {
background-color: #2eb2ff !important;
color: #ffffff !important;
display: inline-block;
font-weight: 500;
font-size: 16px;
line-height: 42px;
font-family: 'Helvetica', Arial, sans-serif;
width: auto;
}
.rodape {
background-color: #00FF00;
width: 700px;
margin: 0 auto;
}
.inicio {
background-color: #DCDCDC ;
width: 700px;
margin: 0 auto;
height:300px;
}
</style>
</head>
<body>
<div class="container">
<div class="inicio" >
<a href="index.html">LOGO</a>
</div>
<div class="inscreva">
<p>Informa os dados</p>
<form name="contact" method="POST" data-netlify="true">
<p>
<label>Nome: <input type="text" name="name" /></label>
</p>
<p>
<label>E -mail: <input type="email" name="email" /></label>
</p>
<p>
<button type="submit" class="botaoinscrever">Assinar</button>
</p>
</form>
</div>
<div class="rodape">
Rodape
</div>
</div>
</body>
</html>