-
Notifications
You must be signed in to change notification settings - Fork 0
/
Questionario feito em sala 28-03.html
200 lines (167 loc) · 6.16 KB
/
Questionario feito em sala 28-03.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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
<!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>Document</title>
</head>
<body>
<form>
<fieldset>
<legend>Questionário</legend>
<header>
<fieldset>
<legend>Cadastro</legend>
<label for="Email">Email:</label>
<input
type="email"
id="email"
name="email"
value=""
/>
<br></br>
<label for="Senha">Senha:</label>
<input
type="password"
id="senha"
name="senha"
value=""
/>
</fieldset>
</header>
<main>
<fieldset>
<legend>Dados Pessoais</legend>
<label for="Nome">Nome:</label>
<input
type="text"
id="nome"
name="nome"
value=""
/>
<br></br>
<label for="Idade">Idade:</label>
<input
type="number"
id="idade"
name="idade"
value=""
/>
<br></br>
<label for="Telefone">Telefone:</label>
<input
type="text"
id="telefone"
name="telefone"
value=""
/>
<br></br>
<label for="Nascimento">Data de nascimento:</label>
<input
type="date"
id="nascimento"
name="nascimento"
value=""
/>
<br></br>
<label for="Genero">Genero:</label>
<input
type="radio"
id="masculino"
name="genero"
value=""
/>
<label for="Genero">Masculino</label>
<input
type="radio"
id="feminino"
name="genero"
value=""
/>
<label for="Genero">Feminino</label>
<input
type="radio"
id="outros"
name="genero"
value=""
/>
<label for="Genero">Outros</label>
<input
type="radio"
id="Prefiro Nao Responder"
name="genero"
value=""
/>
<label for="Genero">Prefiro não responder</label>
</fieldset>
<fieldset>
<legend>Preferências</legend>
<label for="Celular">Marca de celular que você usa: </label>
<select id="Celular" name="Celular">
<option value="Samsung">Samsung</option>
<option value="Xiaomi">Xiaomi</option>
<option value="Motorola">Motorola</option>
<option value="Blueberry">Blueberry</option>
<option value="Apple">Apple</option>
</select>
<br></br>
<label for="navegador">Escolha um navegador que você usa: </label>
<input
type="list"
id="navegador"
name="navegador"
list="ListaNavegador"
/>
<datalist id="ListaNavegador">
<option value="Chrome"></option>
<option value="OperaGX"></option>
<option value="Firefox"></option>
<option value="Internet Explorer"></option>
</datalist>
<br></br>
<label for="Musica">Escolha os ritmos músicais que você escuta:</label>
<input
type="checkbox"
id="Rock"
name="musica"
/>
<label>Rock</label>
<input
type="checkbox"
id="Pop"
name="musica"
/>
<label>Pop</label>
<input
type="checkbox"
id="Funk"
name="musica"
/>
<label>Funk</label>
<input
type="checkbox"
id="MPB"
name="musica"
/>
<label>MPB</label>
<input
type="checkbox"
id="Sertanejo"
name="musica"
/>
<label>Sertanejo</label>
</fieldset>
</main>
<footer>
<fieldset>
<legend>Comentário:</legend>
<textarea id="Comentario" name="Comentario" rows="5" cols="30">Digite o seu comentario aqui</textarea>
</fieldset>
<button type="reset">Resetar</button>
<button type="submit">Enviar</button>
</footer>
</fieldset>
</form>
</body>
</html>