-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathformulario.html
135 lines (118 loc) · 4.06 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<!DOCTYPE html>
<html lang="en">
<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">
<title>Formulário</title>
<style>
fieldset {width: 30%;}
</style>
</head>
<body>
<button>
<a href="index.html" style="text-decoration: none;"> Home</a>
</button>
<h1>Formulário</h1>
<!--Formulário 01-->
<div>
<form method="get">
<fieldset>
<legend>Dados Pessoais</legend>
<label for="name"> Nome: </label>
<input type="text" id="name" name="nome">
<br>
<label for="nasc">Data de Nascimento: </label>
<input type="text" id="nasc" name="nascimento">
<br>
<label>Sexo: </label>
<input type="radio" id="M" name="sexo" value="Masculino">
<label for="M">Masc</label>
<input type="radio" id="F" name="sexo" value="Feminino">
<label for="F">Fem</label>
<input type="radio" id="N" name="sexo" value="NInf">
<label for="N">Prefiro não informar</label>
<br>
<label for="end">Endereço: </label>
<input type="text" name="endereço" id="end">
<br>
<label for="log">Logadouro: </label>
<input type="text" name="logadouro" id="log">
<br>
<label for="br">Bairro: </label>
<input type="text" name="bairro" id="br">
<br>
<label for="cid">Cidade: </label>
<input type="text" name="cidade" id="cid">
<br>
<label for="uf">UF: </label>
<select name="UF" id="uf">
<option value="DF">DF</option>
<option value="GO">GO</option>
<option value="BA">BA</option>
<option value="SP">SP</option>
</select>
<br>
<label for="em">Email: </label>
<input type="email" id="em" name="email">
<br>
<input type="reset" value="Limpar">
<input type="submit" value="Enviar">
</fieldset>
</form>
</div>
<br><br>
<div>
<!--Formulário 02-->
<form method="get">
<fieldset>
<legend>Dados Pessoais</legend>
<label for="nome">Nome</label>
<input type="text" id="nome" name="nome">
<br>
<label for="date">Data de Nascimento</label>
<input type="date" name="data_nasc" id="date">
<br>
<label for="ema">E-mail</label>
<input type="email" id="ema" name="Email">
<br>
<label for="tel">Telefone</label>
<input type="tel" id="tel">
</fieldset>
<fieldset>
<legend>Dados acadêmicos</legend>
<label for="cr">Curso</label>
<select name="curso" id="cr"f>
<option value="ADS">ADS</option>
<option value="CD">CD</option>
</select>
<br>
<label for="sem">Semestre: </label>
<input type="radio" id="s1" name="semestre" value="primeiro">
<label for="s1">1°</label>
<input type="radio" id="s2" name="semestre" value="segundo">
<label for="s2">2°</label>
<input type="radio" id="s3" name="semestre" value="terceiro">
<label for="s2">3°</label>
<input type="radio" id="s4" name="semestre" value="quarto">
<label for="s2">4°</label>
<input type="radio" id="s5" name="semestre" value="quinto">
<label for="s2">5°</label>
</fieldset>
<fieldset>
<label for="tr">Trabalha?</label>
<input type="checkbox">
<br>
<label for="loc">Local de trabalho:</label>
<input type="text" id="loc" name="localtrabalho">
<br>
<label>Descreva sua experiência</label>
<br>
<textarea name="experiencia" id="exp" cols="50" rows="5"></textarea>
</fieldset>
<input type="submit" value="Gravar">
<input type="reset" value="Limpar">
</form>
</div>
</body>
</html>