-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathformulario.html
111 lines (83 loc) · 2.69 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
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html lang="pt-br">
<head>
<title>HTML - Formulário Fale Conosco</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" type="text/css" href="css/formulario.css">
</head>
<body>
<header class="header">
<h2><a href="/">Rodrigo Paes</a></h2>
<nav>
<ul class="header-menu">
<li><a href="index.html">Inicio</a></li>
</ul>
</nav>
</header>
<section>
<article class="formulario">
<h1>Simulação de Emprestimo</h1>
<p>Preencha os campos abaixo</p>
<form method="post">
<div>
<label for="nome">Nome</label>
<input type="text" name="nome" id="nome" placeholder="Digite seu nome">
</div>
<div>
<label for="email">E-mail</label>
<input type="email" name="email" id="email" placeholder="Digite seu email">
</div>
<div>
<label for="renda">Sua renda mensal</label>
<input type="text" name="renda" id="renda" min="1500" placeholder="R$ 1500">
</div>
<div class="idade">
<div class="idade-item">
<label for="idade">Idade</label>
<input type="number" name="idade" id="idade" min="18">
</div>
<div>
<p>
<label>Sexo</label>
<input type="radio" name="Masculino" value="masculino"> Masculino<br>
<input type="radio" name="feminino" value="feminino"> Feminino
</p>
</div>
</div>
<div>
<p>
<label>Estado Civil?</label>
<input type="checkbox" name="casado" value="casado"> Casado
<input type="checkbox" name="solteiro" value="solteiro"> Solteiro
</p>
</div>
<div>
<label>Forma de pagamento</label>
<select>
<option value="carner">Carne</option>
<option value="saldodofgts">Saldo do FGTS</option>
<option value="cartao" selected>Cartão de credito</option>
</select>
</div>
<div>
<label>Qual o valor do emprestimo?</label>
<output name="amount" id="amount" for="rangeInput">1000</output>
<input type="range" name="rangeInput" min="1000" id="rangeInput" max="2000" value="0" oninput="amount.value=rangeInput.value">
</div>
<div>
<label for="mensagem">Mensagem</label>
<textarea name="mensagem" id="mensagem" rows="10" ></textarea>
</div>
<div>
<button type="submit">Enviar</button>
</div>
</form>
</article>
</section>
<footer>
<p>Desenvolvido por Rodrigo Paes</p>
</footer>
</body>
</html>