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
88 lines (83 loc) · 2.66 KB
/
Copy pathformulario.html
File metadata and controls
88 lines (83 loc) · 2.66 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!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>
</head>
<body>
<form>
<fieldset>
<legend>Dados Pessoais</legend>
<label
for="codigo">Código:
</label>
<input type="number">
<br><br>
<label
for="nome">Nome:
</label>
<input type="text">
<br><br>
<label
for="senha">Senha:
</label>
<input type="password">
<br><br>
<label>Sexo:</label>
<label>
<input type="radio" name="Sexo">
Masculino
</label>
<label>
<input type="radio" name="Sexo">
Feminino
</label>
<br><br>
<label
for="idade">Idade:
</label>
<input type="number">
<br><br>
<label
for="cartao">Cartão de Crédito:</label>
</label>
<select>
<option value="">Visa</option>
<option value="">MasterCard</option>
<option value="">AmericanExpress</option>
</select>
</fieldset>
<fieldset>
<legend>Dados Profissionais</legend>
<label
for="cargo">Cargo:
</label>
<select>
<option value="">Analista Junior</option>
<option value="">Analista Pleno</option>
<option value="">Analista Sênior</option>
</select>
<br>
<br>
<label for="dados">Dados Pessoais:
<br>
<input type="checkbox"> Fumante
<br>
<input type="checkbox"> Pratica Exercícios Físicos
<br>
<input type="checkbox"> Consome bebida alcoólica
</label>
<br><br>
Experiências Profissionais:
<label>
<br>
<textarea placeholder="Digite as suas experiências"></textarea>
</label>
</fieldset>
<input type="reset">
<input type="submit">
</form>
</body>
</html>