-
Notifications
You must be signed in to change notification settings - Fork 1
/
contato.html
66 lines (63 loc) · 2.77 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Domus Design | PROJETO DE INTERIORES E RESIDENCIAL</title>
<link rel="stylesheet" href="style.css" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap"
rel="stylesheet">
<link
href="https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Jost:ital,wght@0,100..900;1,100..900&display=swap"
rel="stylesheet">
</head>
<body class="contato">
<header>
<a href="index.html" class="logo"><img src="/assets/logo.svg" alt="Domus Design" />
<h1>Domus</h1>
</a>
<nav>
<a href="index.html">Home</a>
<a href="sobre.html">Sobre</a>
<a href="servicos.html">Serviços</a>
<a href="contato.html">Contato</a>
<a href="blog.html">Blog</a>
</nav>
</header>
<h1>Aqui na Domus Design, estamos sempre prontos para ouvir você!</h1>
<div class="contact">
<form id="form" class="topBefore">
<input id="name" type="text" placeholder="NOME">
<input id="email" type="text" placeholder="E-MAIL">
<textarea id="message" type="text" placeholder="MENSAGEM"></textarea>
<input id="submit" type="submit" value="ENVIAR EMAIL!"
onclick="window.location.href='mailto:[email protected]'">
</form>
</div>
<footer>
<div class="footerContent">
<div class="footerLogo">
<a href="index.html" class="logo"><img src="/assets/logo.svg" alt="Domus Design" />
<h1>Domus</h1>
</a>
</div>
<div class="footerNav">
<p>
Projetos de interiores e residencial, com foco em qualidade e satisfação
do cliente.
</p>
<div class="footerSocial">
<a href="https://www.facebook.com/" target="_blank"><img src="/assets/facebookIcon.svg"
alt="Facebook" /></a>
<a href="https://www.instagram.com/" target="_blank"><img src="/assets/instagramIcon.svg"
alt="Instagram" /></a>
<a href="mailto:" target="_blank"><img src="/assets/emailIcon.svg" alt="Email" /></a>
<a href="https://whatsapp.com/" target="_blank"><img src="/assets/whatsappIcon.svg"
alt="Whatsapp" /></a>
</div>
</div>
</footer>
</body>
</html>