-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathformulario.html
More file actions
81 lines (73 loc) · 2.8 KB
/
formulario.html
File metadata and controls
81 lines (73 loc) · 2.8 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
<!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>Formulario</title>
</head>
<body>
<h1>Coleta de dados</h1>
<form>
<fieldset>
<legend>Dados pessoais</legend>
<label for="Codigo">Código:</label>
<input type="number" style="width: 40px;"/>
<p></p>
<label for="nome">Nome:</label>
<input type="text"/>
<p></p>
<label for="Senha">Senha:</label>
<input type="password">
<p></p>
<label for="Sexo">Sexo:</label>
<label for="Sexo"><input id="Sexo" name="Sexo" type="radio">Masculino</label>
<label for="Sexo"><input id="Sexo" name="Sexo" type="radio">Feminino</label>
<p></p>
<label for="Idade">Idade:</label>
<input type="number" style="width: 40px;">
<p></p>
<label for="">Cartão Credito:</label>
<br>
<select name="" id="">
<option value="Mastercard">Mastercard</option>
<option value="Visa">Visa</option>
<option value="American Express">American Express</option>
</select>
<p></p>
</fieldset>
<fieldset>
<legend>Dados Profissionais</legend>
<label for="cargo">Cargo:</label>
<select name="" id="">
<option value="Analista Junior">Analista Junior</option>
<option value="Analista Pleno">Analista Pleno</option>
<option value="Analista Sênior">Analista Sênior</option>
</select>
<p></p>
<label for="Dados pessoais">Dados pessois:</label>
<p></p>
<label for="Fumante">
<input type="checkbox" name="fuma?" id="Fumante">Fumante
</label>
<p></p>
<label for="Atletico">
<input type="checkbox" name="Atletico?" id="Atletico">Pratica exercicio Fisico
</label>
<p></p>
<label for="Bebe">
<input type="checkbox" name="Bebe?" id="Bebe">Consome Bebida Alcoólica
</label>
<p></p>
<label for="cargo">Cargo:</label>
<p></p>
<textarea placeholder="Data inicio / Data fim Empresa / Cargo" style="height: 50px;"></textarea>
<p></p>
<label for="buttons">
<input type="reset" name="limpaForm" id="limpaForm">
<input type="submit" name="envia" id="envia">
</label>
</fieldset>
</form>
</body>
</html>