-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
117 lines (116 loc) · 5.15 KB
/
contact.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
114
115
116
117
<!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>PC Web Design | Contact</title>
<link rel="stylesheet" href="css/estilo.css">
</head>
<body>
<header>
<div class="container">
<div id="branding">
<a href="index.html"><img src="img/petweb.svg" alt="Logo"></a>
</div>
<nav>
<ul>
<li><a href="services.html">Serviços</a></li>
<li><a href="about.html">Sobre</a></li>
<li class="current"><a href="">Contacto</a></li>
</ul>
</nav>
</div>
</header>
<!-- <div class="header-espaco"></div> -->
<section id="newsletter">
<div class="container">
<h1>Subscreva-se em nossa Newsletter</h1>
<form>
<input type="email" placeholder="Enter e-mail...">
<button type="submit" class="button">Subscrever</button>
</form>
</div>
</section>
<section id="main">
<div class="container">
<section id="contacto" class="contacto">
<h2>Contactos</h2>
<p>Por favor selecione o assunto e digite sua mensagem...</p>
<form class="form" action="" method="post">
<input type="text" name="nome" placeholder=" Nome Completo...">
<input type="email" name="email" placeholder=" Endereço de e-mail...">
<select name="assunto">
<option selected>Selecione um assunto</option>
<option value="consulta">Consulta Geral</option>
<option value="suporte">Cirurgia</option>
<option value="especialidade">Especialidade</option>
<option value="analises">Análises</option>
<option value="grooming">Grooming</option>
<option value="entrega">Entrega a Domicílio</option>
<option value="outro">Outro assunto</option>
</select>
<textarea name="mensagem" rows="10" placeholder=" Escreva aqui a sua mensagem..."></textarea>
<button type="submit" class="button_send">ENVIAR</button>
</form>
</section>
<aside id="sidebar">
<div class="dark">
<h3>Contact</h3>
<div>
<p>☏ (+351)222-058730</p>
</div>
<div>
<p>✉ [email protected]</p>
</div>
<div>
<p>➢ R. do Carmo 15, Porto<br>
4050-064 Porto - Portugal</p>
</div>
</div>
<article id="main_col">
<h3>Map</h3>
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3004.423576714805!2d-8.619125784441795!3d41.147107779287026!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0xd24651d6ee19633%3A0x44e66daa40d105c9!2sR.%20do%20Carmo%2015%2C%204050-064%20Porto!5e0!3m2!1spt-BR!2spt!4v1660047163919!5m2!1spt-BR!2spt" width="600" height="365" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
</article>
</aside>
</div>
</section>
<footer class="footer">
<div class="container">
<div class="row">
<div id="logo_footer" class="footer-col">
<a href="index.html"><img src="img/petweb.svg" alt="Logo"></a>
</div>
<div id="cols" class="footer-col">
<h4>Informações</h4>
<ul>
<li><a href="#">Pagamentos</a></li>
<li><a href="#">Devoluções</a></li>
<li><a href="#">Termos e Condições</a></li>
</ul>
</div>
<div id="cols" class="footer-col">
<h4>Contactos</h4>
<ul>
<li><a href="contact.html">R. do Carmo 15, Porto</a></li>
<li><a href="contact.html">222-058730</a></li>
<li><a href="contact.html">[email protected]</a></li>
</ul>
</div>
<div id="cols" class="footer-col">
<h4>Siga-nos</h4>
<div class="social-links">
<a href=""><img src="img/facebook.svg" alt="FACEBOOK"></a>
<a href=""><img src="img/instagram.svg" alt="INSTAGRAM"></a>
<a href=""><img src="img/twitter.svg" alt="TWITTER"></a>
</div>
</div>
</div>
</div>
<div class="copy">
<p>PC Web Design, Copyright © 2022</p>
</div>
</footer>
<!--<script src="script.js"></script>-->
</body>
</html>