-
Notifications
You must be signed in to change notification settings - Fork 0
/
contato.html
97 lines (78 loc) · 3.3 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PetShop - Contato</title>
<!-- Favicon -->
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon">
<!-- ICONS -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200" />
<!-- CSS -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<div class="logo">
<img src="images/logo.png" alt="teste" width="70px">
</div>
<div class="barra-pesquisa">
<input type="text" name="procura" placeholder="Faça sua pesquisa aqui!!">
<button type="button">Procura</button>
</div>
<nav class="menu">
<ul>
<li class="submenu" ><a href="index.html">Home</a></li>
<li class="submenu"><a href="sobre.html">Sobre</a></li>
<li class="submenu" id="activesub"><a href="contato.html">Contato</a></li>
<li class="submenu"><a href="servicos.html">Serviços</a></li>
<li class="submenu"><a href="produtos.html">Produtos</a></li>
</ul>
</nav>
</header>
<section>
<div class="destaque">
<img src="images/destaque.png" alt="petshop destaque">
</div>
<div class="seletor-foto">
<input type="radio" name="" checked>
<input type="radio" name="">
<input type="radio" name="">
</div>
</section>
<section>
<h2 class="texto-produto">Contato</h2>
<div class="card-info">
<p>
<strong>Email:</strong> [email protected] <br>
<strong>Telefone:</strong> (75)9 8888-7777 <br>
<strong>Endereço:</strong> Rua ficticia N 257 <br>
<strong>Rede Social:</strong> Facebook <a href="#">PetShp</a> <br>
<strong>Twitter:</strong> <a href="#">PetShp</a> <br>
</p>
<p>
Entre me Contato com nosco atravez de um desses contatos acima!
</p>
</div>
<h2 class="texto-produto">Formulario para Contato</h2>
<div class="card-info" >
<form method="get" class="contato">
<label for="Nome">Nome</label>
<input type="text" name="nome">
<label for="Email">Email</label>
<input type="email" name="email">
<label for="Telefone">Telefone</label>
<input type="tel" name="telefone">
<label for="Assunto">Assunto</label>
<input type="text" name="assunto">
<label for="Mensagem">Mensagem</label>
<textarea name="box" cols="20" rows="5"></textarea>
<button type="button">Enviar Mensagem</button>
</form>
</div>
</section>
<footer class="rodape">
<p>© Todos os Direitos Reservados 2024 a <span>Danilo Dias</span> | <a href="#">Politica de Privacidade</a> | <a href="#">Termos de Serviço</a> </p>
</footer>
</body>
</html>