-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathex07.html
47 lines (45 loc) · 1.48 KB
/
ex07.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
<!doctype html>
<html>
<head>
<title>Formulário HTML</title>
</head>
<body>
<form action="/pagina-processa-dados-do-form" method="post">
<fieldset>
<legend>Dados Gerais</legend>
<Label for="nome">Nome:</label>
<input type="text" minlength="3" id:"nome" />
<label for="data_nascimento">Data de Nascimento:</label>
<input type="text" id="data_nascimento" />
<label for="cpf">CPF:</label>
<input type="cpf" minlength="11" id:"cpf" />
</fieldset>
<fieldset>
<legend>Endereço</legend>
<label for="tipo_endereco">Tipo:</label>
<select id="tipo_endereco">
<option value="">Selecione</option>
<option value="">Rua</option>
<option value="">Estrada</option>
<option value="">Rodovia</option>
<option value="">Outros</option>
</select>
<label for="logradouro_endereco">Logradouro:</label>
<input type:"text" id:"logradouro_endereco” />
<Label for="numero_endereco">Número:</label>
<input type="text" id:"numero endereco" />
<label for="complemento_endereco">Complemento:</label>
<input type="text" id="complemento_endereco" />
</fieldset>
<fieldset>
<legend>Fale Conosco</legend>
<label for="msg">Mensagem:</label>
<textarea type="text" id:"msg"></textarea>
</fieldset>
<fieldset>
<button type="submit">Enviar sua mensagen</button>
<button type="reset">Limpar o Formulário</button>
</fieldset>
</form>
</body>
</html>