-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontato.html
113 lines (101 loc) · 5.12 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
113
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="utf-8">
<title>contato</title>
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="contato.css">
<link href="Anton-Regular.ttf" rel="stylesheet">
</head>
<body>
<header>
<img id="logo" src="logo.png">
<h1 class="titulo-principal">Vendas De Livros</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="produtos.html">Produtos</a></li>
<li><a href="contato.html">contato</a></li>
</ul>
</nav>
</header>
<main>
<br>
<fieldset>
<form>
<section class="inputBox">
<label for="Nomeesobrenome" class="labelinput"><div style='text-align: centers;'>Nome e Sobrenome</div></label>
<input type="text" name="Nomeesobrenome" id="Nomeesobrenome" class="inputUser" placeholder="Seu nome e sobrenome" required >
</section>
<br>
<section class="inputBox">
<label for="email" class="labelinput"><div style='text-align: centers;'>Email</div></label>
<input type="text" name="email" id="email" class="inputUser" placeholder="seuemail@seudominio.com"required >
</section>
<br>
<section class="inputBox">
<label for="telefone" class="labelinput">Telefone</label>
<input type="tel" name="telefone" id="telefone" class="inputUser" placeholder="(XX)XXXXX-XXXX" required >
</section>
<br>
<p>Sexo:</p>
<section>
<label for="radio-genero"><input type="radio" name="feminino" value="Feminino" id="radio-feminino" checked>Feminino</label>
<label for="radio-genero"><input type="radio" name="Masculino" value="Masculino" id="radio-Masculino" checked>Masculino</label>
<label for="radio-genero"><input type="radio" name="Outro" value="Outro" id="radio-Outro" checked>Outro</label>
<label for="data_nascimento"><strong>Ano de Nascimento</strong></label>
<input type="date" name="data_nascimento" id="data_nascimento" required>
</section>
<br>
<section class="inputBox">
<label for="cidade" class="labelinput">Cidade</label>
<input type="text" name="cidade" id="cidade" class="inputUser" placeholder="Sua Cidade" required>
</section>
<br>
<section class="inputBox">
<label for="estado" class="labelinput">Estado</label>
<input type="text" name="estado" id="estado" class="inputUser" placeholder="Seu Estado">
</section>
<br>
<section class="inputBox">
<label for="endereco" class="labelinput">Endereço</label>
<input type="text" name="endereco" id="endereco" class="inputUser" placeholder="Seu Endereço" required>
</section>
<br>
<section class="inputBox">
<label for="Cep" class="labelinput">Cep</label>
<input type="text" name="Cep" id="Cep" class="inputUser" placeholder="Seu Cep " required>
</section>
<br>
</section>
<section>
<P>Como prefere nosso contato?</P>
<label for="radio-email"><input type="radio" name="contato" value="email" id="radio-email">Email</label>
<label for="radio-telefone"><input type="radio" name="contato" value="Telefone" id="radio-Telefone" checked>Telefone</label>
<label for="radio-telefone"><input type="radio" name="contato" value="Whatsapp" id="radio-Whatsapp" checked>Whatsapp</label>
</section>
<section>
<p>Qual horario prefere ser atendido?</p>
<select>
<option>manha</option>
<!--dropdown- selecoes selecionaveis-->
<option>Tarde</option>
<option>Noite</option>
</select>
</section>
<br>
<label for="mensagem">Mensagem:</label>
<textarea cols="70" rows="10" id="mensagem" placeholder="Digite seu texto aqui!" required ></textarea>
<label class="checkbox">
<input type="checkbox">Gostaria de receber nossas novidades por email?</label>
<input type="submit" value="Enviar Formulario" class="enviar">
</fieldset>
<br>
</form>
</main>
<footer>
<img id="logo1" src="logo.png">
<p class="copyright">© copyright -- Guilherme Giovani</p>
</footer>
</body>
</html>