-
Notifications
You must be signed in to change notification settings - Fork 24
/
contato.html
112 lines (83 loc) · 3.64 KB
/
contato.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
<!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">
<link rel="stylesheet" href="css/style.css">
<title>CONTATO</title>
</head>
<body>
<header>
<h1>CONTATO</h1>
</header>
<section>
<form name="contato" action="index.html" method="get">
<p>* campos obrigatórios</p>
<fieldset>
<legend>Dados Pessoais</legend>
<label for="idNome">* Nome: </label> <br>
<input type="text" name="nome" id="idNome" required autofocus value="Dan"> <br>
<label for="idEmail" class="colorido">Email: </label> <br>
<input type="email" name="email" id="idEmail" placeholder="nome@email"> <br>
Telefone: <br>
<input type="tel" id="phone" name="phone" pattern="[0-9]{2}-[0-9]{5}-[0-9]{4}"
placeholder="99-99999-9999"> <br>
Data de Nascimento: <br>
<input type="date" name="data" id="idData">
<input type="time" name="hora" id="idHORA">
<input type="week" name="" id="">
<input type="datetime-local" name="" id="">
<br>
Cidade: <br>
<select name="cidade" id="idCidade">
<optgroup label="Sudeste">
<option value="SP">São Paulo</option>
<option value="RJ">Rio de Janeiro</option>
</optgroup>
<optgroup label="Sul">
<option value="PA">Porto Alegre</option>
</optgroup>
</select>
</fieldset>
<fieldset>
<legend>Segurança</legend>
<label for="idSenha">Senha: </label> <br>
<input type="password" name="senha" id="idSenha" minlength="8" maxlength="12"> <br>
</fieldset>
<fieldset>
<legend>Outros Campos</legend>
Busca:
<input type="search" name="busca" id="idBusca"> <br>
Url:
<input type="url" name="url" id="idUrl" placeholder="http://site"> <br>
Número:
<input type="number" name="numero" id="idNumero" min="2" max="10" step="2"> <br>
Range:
<input type="range" name="range" id="idRange" min="0" max="10"> <br>
Arquivo:
<input type="file" name="arquivo" id="idArquivo">
</fieldset>
<fieldset>
<legend>Tamanhos</legend>
<input type="radio" name="tamanho" id="idP" value="P"> P
<input type="radio" name="tamanho" id="idM" value="M"> M
<input type="radio" name="tamanho" id="idG" value="G"> G
</fieldset>
<fieldset>
<legend>Cores</legend>
<input type="checkbox" name="cor" id="idVermelho" value="Vermelho"> Vermelho
<input type="checkbox" name="cor" id="idAzul" value="Azul"> Azul
<input type="checkbox" name="cor" id="idVerde" value="Verde"> Verde
</fieldset>
<fieldset>
<legend>Mensagem</legend>
<textarea name="Mensagem" id="idMensagem" cols="50" rows="5"></textarea>
</fieldset>
<input type="submit" value="Enviar">
<input type="button" value="Teste">
<input type="reset">
</form>
</section>
</body>
</html>