-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontato.html
More file actions
63 lines (54 loc) · 2.53 KB
/
contato.html
File metadata and controls
63 lines (54 loc) · 2.53 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
<!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">
<title>Contato</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="wrapper">
<div class="menu">
<ul>
<li><a href="Index.html">Página Principal</a></li>
<li><a href="sobre.html">Sobre Nós</a> </li>
<li><a href="atendimento.html">Horários de Atendimento</a></li>
</ul>
</div>
<div class="main">
<div class="headct">
<img class="atendimento" src="/gps.jfif">
<figcaption>Contato</figcaption>
</div>
<div class="content">
<fieldset>
<legend>Dúvidas?</legend>
<div class="dados">
<form onsubmit="" method="get">
<label>Nome</label><input type="text" name="name"><br>
<label>E-mail</label><input type="text" name="email"><br>
<label>Assunto: </label><input type="text" name="subject" /><br>
<label>Mensagem</label>
<textarea rows="10" cols="50" name="message"></textarea>
<button type="submit">Enviar</button>
</form>
</div>
</fieldset>
</div>
<div class="borda">
<legend>Contate-nos</legend>
<div class="dados"></div>
<p><strong>Endereço:</strong> Rua Duque de Caxias</p>
<p><strong>Nº</strong>173</p>
<h4>Centro - Limeira/Sp</h4>
<p><strong>Telefone:</strong>(19) 98135-6462</p>
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3684.547723018239!2d-47.4055236842021!3d-22.558609031212864!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x94c8808c38c24e71%3A0x77f09f8803a1cc0c!2sR.%20Duque%20de%20Caxias%2C%20173%20-%20Centro%2C%20Limeira%20-%20SP%2C%2013480-160!5e0!3m2!1spt-BR!2sbr!4v1681257971048!5m2!1spt-BR!2sbr" width="400" height="300" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
</div>
<div class="footer">
<a href="Index.html"><button> Página Inicial </button></a>
<a href="atendimento.html"><button> Anterior </button></a>
</div>
</div>
</body>
</html>