forked from beacms/E01-HTML
-
Notifications
You must be signed in to change notification settings - Fork 0
/
formulario.html
108 lines (95 loc) · 2.92 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
<!DOCTYPE html>
<html lang="pt-br">
<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>
h1 {
font-family: Arial, Helvetica, sans-serif;
}
div {
margin: 5px;
}
label {
display: block;
}
</style>
</head>
<body>
<h1>Formulário de Cadastro</h1>
<form>
<fieldset>
<legend>Dados Pessoais</legend>
<div>
<label>Código</label>
<input type="number">
</div>
<div>
<label>Nome</label>
<input type="text">
</div>
<div>
<label>Senha</label>
<input type="password">
</div>
<div> <label>Sexo</label></div>
<label>
<input type="radio", name="status">
Masculino
</label>
<label>
<input type="radio", name="status">
Feminino
</label>
<div>
<label>Cartão de Crédito</label>
<div>
<select name="credid-card" id="credid-card" multiple>
<option>Mastercard</option>
<option>Visa</option>
<option>American Express</option>
</select>
</div>
</div>
</fieldset>
<fieldset>
<legend>Dados Profissionais</legend>
<div>
<label>Cargo:</label>
<select name="cargo" id="cargo">
<option>Analista Pleno</option>
<option>Analista Júnior</option>
<option>Analista Sênior</option>
</select>
</div>
<div>
<label>Dados Pessoais:</label>
<label>
<input type="checkbox">
Fumante
</label>
<label>
<input type="checkbox">
Pratica Exercícios Físicos
</label>
<label>
<input type="checkbox">
Consome Bebida Alcoolica
</label>
</div>
<div>
<label>Experiências Profissionais:</label>
</div>
<div>
<textarea id="story" name="story" placeholder="digite"></textarea>
</div>
</fieldset>
<div>
<input type="reset" value="Limpar">
<input type="submit" value="Inserir">
</div>
</form>
</body>
</html>