-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontato.html
More file actions
96 lines (75 loc) · 3.99 KB
/
contato.html
File metadata and controls
96 lines (75 loc) · 3.99 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
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
<!DOCTYPE html>
<html lang="en">
<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>Derma Beauty | Clínica Dermatológica e Estética</title>
<link rel="stylesheet" href="./assets/css/base.css">
</head>
<body>
<div class="wrapper">
<div class="menu">
<!-- Aqui vai o seu menu -->
<li><a href="./index.html">Início</a></li>
<li><a href="./Sobre.html">Sobre</a></li>
<li><a href="./horario-de-atendimento.html">Horário de Atendimento</a></li>
<li><a href="./contato.html">Contato</a></li>
</div>
<div class="main">
<div class="header" >
<h1>Derma Beauty | Clínica Dermatológica e Estética</h1>
<div class="Logo"> <img src="./assets/imagens/DermaBeautyLogotipo.png" alt="Derma Beauty Logotipo"> </div>
<!-- Aqui vai o seu header -->
</div>
<div class="content">
<div class="imgderm">
<img style='float: right;' width="40%" title="Médica Dermatologista" alt="Médica Dermatologista da Clínica" src="./assets/imagens/imgcontato.png" >
</div>
<div class="content2">
<p><i><h3 style="color: #6370bb;">Te aguardamos em nossa Clínica</h3></i></p>
<p> Para dúvidas, sugestões e marcação de Consulta entre em contato <br>
pelo formulário abaixo: </p>
<form id="formulario" autocomplete="off">
<fieldset>
<legend>Formulário De Contato</legend>
<label>Nome:</label><input type="text"><br>
<label>Email:</label><input type="email"><br>
<label>Assunto:</label><input type="text"><br>
<label>Mensagem:</label><br><textarea cols="35" rows="8"></textarea><br>
<button type="submit">Limpar</button>
<input type="submit" value="Enviar">
</fieldset>
</form>
</div>
<br>
<div class="mapa">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3750.799666498459!2d-43.94076588508543!3d-19.93284518660213!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0xa699dc33844e8d%3A0x25c3ee8734f393f9!2sPra%C3%A7a%20da%20Liberdade%20-%20Savassi%2C%20Belo%20Horizonte%20-%20MG%2C%2030140-010!5e0!3m2!1spt-BR!2sbr!4v1672352089336!5m2!1spt-BR!2sbr" width="100%" height="250" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
</div>
<br>
<div class="address">
<ul>
<li> Endereço: Praça da Liberdade, Belo Horizonte - MG </li>
<li> Telefone: (00)99999-9999 </li>
</ul>
</div>
<br>
<!-- Aqui vai o seu conteúdo -->
</div>
<div class="footer">
<h3>Nossas Redes Sociais </h3>
<ul class="socialmedia">
<li> <a href="#" target="_blank" title="Facebook"><img src="./assets/imagens/fb-icon.png" width="32px" height="32px"> </a></li>
<li> <a href="#" target="_blank" title="Instagram"><img src="./assets/imagens/instagram-icon.png" width="32px" height="32px"> </a></li>
<li> <a href="#" target="_blank" title="Twitter"><img src="./assets/imagens/twitter-icon.png" width="32px" height="32px"> </a></li>
<li> <a href="#" target="_blank" title="Youtube"><img src="./assets/imagens/youtube-icon.png" width="32px" height="32px"> </a></li>
</ul>
<div class="footer-bottom">
Derma Beauty - Todos os direitos Reservados - 2022
</div>
<!-- Aqui vai o seu rodapé -->
</div>
</div>
</div>
</body>
</html>