-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTeste.html
More file actions
67 lines (59 loc) · 2.43 KB
/
Teste.html
File metadata and controls
67 lines (59 loc) · 2.43 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
<html>
<head>
<title>Imitação</title>
</head>
<body>
<form action="https://www.google.com/" method="post">
<fieldset>
<legend>Dados Básicos</legend>
<label>Name:
<input type="text" placeholder="Insira seu nome" size="25">
</label><br>
<label>Email:
<input type="email" placeholder="Insira seu email" size="25">
</label><br>
<label>Regis:
<input type="text" placeholder="Insira seu Rg" size="25">
</label><br>
<label>Registro:
<input type="email" name="email" size="25" maxlength="100">
</label> <br />
</fieldset> <br>
<fieldset>
<legend>Suas Preferências</legend>
<p>
<label for="ouvir sobre">
Como ficou sabendo sobre nós?
</label>
<select name="Como soube?" id="Como soube?">
<option value="Google">Google</option>
<option value="Facebook">Facebook</option>
<option value="Whatsapp">Whatsapp</option>
</select>
</p>
<p>
<label for="Voltaria?">
Você voltaria a visitar este site?
</label><br>
<label for="Sim">
<input type="radio" name="a" value="Sim">Sim
</label>
<label for="Não">
<input type="radio" name="a" value="Não">Não
</label>
<label for="Talvez">
<input type="radio" name="a" value="Talvez">Talvez
</label>
</p>
<label for="Check">Quero receber atualizações de email
<input type="checkbox" name="Check" checked>
</label> <br>
<label for="Enviar">
<input type="submit" name="Enviar" value="Enviar">
</label>
<!---->
<!--Estude mais a parte dos boxes-->
</fieldset>
</form>
</body>
</html>