-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathformulario.html
106 lines (79 loc) · 2.41 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<title> CSS externo - Formulário - 13, 17, 24/04 </title>
<link rel="stylesheet" href="formulario.css">
</head>
<body>
<header> <!--Cabeçalho--> </header>
<main> <!--Meio-->
<section class="box">
<form>
<fieldset>
<legend> <strong>
Formulário de clientes
</legend></strong>
<section class="inputBox">
<input type="text" name="nome" id="name"
class="inputUser" required>
<label for="name" class="labelinput">Nome completo</label>
</section>
<br><br>
<section class="inputBox">
<input type="text" name="email" id="email"
class="inputUser" required>
<label for="email" class="labelinput">Email</label>
</section>
<br><br>
<section class="inputBox">
<input type="text" name="telefone" id="telefone"
class="inputUser" required>
<label for="telefone" class="labelinput">Telefone</label>
<br><br>
<p>Sexo:</p>
<input type="radio" name="genero" id="feminino"
value="feminino" required>
<label for="feminino">Feminino</label>
<br>
<input type="radio" name="genero" id="masculino"
value="masculino" required>
<label for="masculino">Masculino</label>
<br>
<input type="radio" name="genero" id="outro"
value="outro" required>
<label for="outro">Outro</label>
<br><br><br>
<label for="data_nascimento"><strong>Ano de Nascimento</strong></label>
<input type="date" name="data_nascimento" id="data_nascimento"required>
<br><br><br>
<section class="inputBox">
<input type="text" name="cidade" id="cidade"
class="inputUser" required>
<label for="cidade" class="labelinput">Cidade</label>
</section>
<br><br>
<section class="inputBox">
<input type="text" name="estado" id="estado"
class="inputUser" required>
<label for="estado" class="labelinput">Estado</label>
</section>
<br><br>
<section class="inputBox">
<input type="text" name="endereco" id="endereco"
class="inputUser" required>
<label for="endereco" class="labelinput">Endereço</label>
</section>
<br><br>
<section>
<input type="submit" value="Enviar Formulário" id="submit"
class="inputUser">
</section>
</section>
</section>
</fieldset>
</form>
</main>
<footer> <!--Rodapé--> </footer>
</body>
</html>