forked from gustavodepaula-daw/E01-HTML
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathformulario.html
More file actions
70 lines (54 loc) · 1.96 KB
/
Copy pathformulario.html
File metadata and controls
70 lines (54 loc) · 1.96 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title> Formulário </title>
</head>
<body>
<div>
<form>
Dados Pessoais <br>
Código: <input type="text"/> <br>
Nome: <input type=" text" /> <br>
Senha: <input typt="password" /> <br>
Sexo: <input type="radio" id=" feminino" name="Feminino" />
<label for="feminino"> Feminino</label>
<input type="radio" id="masculino" name="masculino">
<label for="masculino">Masculino</label> <br>
Idade: <input type="text"> <br>
Cartões de créditos:
<select >
<option value="Mastercard"> Mastercard </option>
<option value="Visa"> Visa </option>
<option value="American Express"> American Express </option>
</select> <br>
<br>
Dados Profissionais <br>
Cargo:
<select name="cargo" id="cargo">
<option value="analista Júnior">Analista Júnior</option>
<option value="analista pleno"> Analista Pleno</option>
<option value="analista sênior">Analista Sênior</option>
</select>
<br>
Dados Pessoais:
<br>
<input type="checkbox" id="fumante" name="fumante"/>
<label for="fumante"> Fumante</label>
<br>
<input type="checkbox" id="atividadeFisica" name="atividadeFisica">
<label for="atividadeFisica">Prática atividade física</label>
<br>
<input type="checkbox" id="consomeAlcool" name="consomeAlcool">
<label for="consomeAlcool">Consome bebidas alcoólicas </label>
<br>
<br>
Experiências profissionais: <br>
<textarea id="Experiências"></textarea>
<br>
<button type="submit">Limpar</button>
<button type="submit">Inserir</button>
</form>
</div>
</body>
</html>