-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathformulario.html
More file actions
86 lines (73 loc) · 2.75 KB
/
formulario.html
File metadata and controls
86 lines (73 loc) · 2.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" type=text/css href="FORMULÁRIO.css">
<title>Setor Casa </title>
</head>
<body>
<div class="campo">
<h1 id="título">Feedback <br> Casa</h1>
<p id="subtítulo">Feedback <br> Setor Casa</p>
<br>
</div>
</div>
<form">
<fieldset class="grupo">
<div class="campo">
<label for="nome"><strong>Nome</strong></label>
<input type="text" name="nome" id="nome" required>
</div>
<div class="campo">
<label for="sobrenome"> <strong>Sobrenome</strong></label>
<input type="text" name="sobrenome" id="sobrenome" required>
</div>
</fieldset>
<div class="campo">
<label for="email"><strong>E-mail</strong></label>
<input type="email" name=email id=email required>
</div>
<div class="campo">
<label>Qual produto você comprou?</label>
<select name="produto" id="produto" required>
<option selected disabled value="">Selecione</option> </option>
<option>CHEF PROTECT</option>
<option>NATURAL WHITE</option>
<option>PERFURAMAX</option>
<option>SKIN TEEN</option>
</select>
</div>
<div class="campo">
<label>Qual nota você daria para o produto entre 1 e 3:</label>
<label>
<input type="radio" name="nota" id="1"> 1
</label>
<label>
<input type="radio" name="nota" id="2"> 2
</label>
<label>
<input type="radio" name="nota" id="3"> 3
</label>
</div>
<div class="campo">
<label>Qual nota você daria para o atendimento entre 1 e 3:</label>
<label>
<input type="radio" name="nota2" id="4"> 1
</label>
<label>
<input type="radio" name="nota2" id="5"> 2
</label>
<label>
<input type="radio" name="nota2" id="6"> 3
</label>
</div>
<div class="campo">
<label>Deixe seu Feedback:</label>
<textarea rows="6" style="width: 26em" id="experiencia" name="experiencia"></textarea>
</div>
<!-- Botão para enviar o formulário -->
<button class="botao" type="submit" onsubmit="">Enviar</button>
</form>
</body>
</html>