Skip to content

Commit 013af77

Browse files
committed
pagina contato concluida
1 parent bf2ca63 commit 013af77

File tree

3 files changed

+93
-1
lines changed

3 files changed

+93
-1
lines changed

contato.html

+38
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,44 @@ <h1 class = "textbanner">Quer falar com a gente?</h1>
4343
</div>
4444
</main>
4545

46+
<!-- Formulário para Contatos -->
47+
<section class="Container">
48+
<div id="formulario">
49+
<h2>Nosso Contato</h2>
50+
<form action="mailto:[email protected]?subject=contatodosite">
51+
<input type="text" name="nome" id="nome" placeholder="Nome" required>
52+
<br>
53+
<input type="email" name="email" id="email" placeholder="E-Mail" required>
54+
<br>
55+
<input type="tel" name="number" id="number" placeholder="Celular" required>
56+
<br>
57+
<textarea name="mensagem" id="mensagem" cols="10" rows="10" placeholder="Qual sua dúvida ou problema?" required></textarea>
58+
<br>
59+
<input type ="submit" value="Enviar">
60+
<input type="reset">
61+
</form>
62+
</div>
63+
</section>
64+
65+
<!-- Section Zap -->
66+
<section class = "zap">
67+
<div class= "Container FlexSection">
68+
<div class = "textzap">
69+
<h2>Chama a gente no <span class = "spanzap">Whatsapp!</span></h2>
70+
<p>Entra em contato que a gente resolve seu problema</p>
71+
<a href="https://api.whatsapp.com/send?phone=5511123456789" target="_blank" class="Buttonzap">Chama aí!</a>
72+
</div>
73+
<div class = "imagemzap">
74+
<img src="./img/qrcodezap.PNG" alt="qrcode zap">
75+
</div>
76+
</div>
77+
</section>
78+
79+
<!-- Google Maps Integrado -->
80+
<section class="Container">
81+
<iframe id = "maps1" src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3657.7659721597747!2d-46.577542724740866!3d-23.540918260841387!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x94ce5ec26cfdcfed%3A0x49e7eb66fd4f1f2!2sSenac%20Tatuap%C3%A9%20-%20Cel.%20Lu%C3%ADs%20Americano!5e0!3m2!1spt-BR!2sbr!4v1712777172287!5m2!1spt-BR!2sbr" width="347" height="300" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
82+
<iframe id = "maps2"src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3657.7659721597747!2d-46.577542724740866!3d-23.540918260841387!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x94ce5ec26cfdcfed%3A0x49e7eb66fd4f1f2!2sSenac%20Tatuap%C3%A9%20-%20Cel.%20Lu%C3%ADs%20Americano!5e0!3m2!1spt-BR!2sbr!4v1712777172287!5m2!1spt-BR!2sbr" width="700" height="350" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
83+
</section>
4684

4785
<!-- Rodapé -->
4886
<footer>

img/iconzap.png

2.06 KB
Loading

style.css

+55-1
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ body {
7373
flex-direction: row;
7474
}
7575

76+
7677
/* Customização dos cards */
7778

7879

@@ -176,6 +177,7 @@ body {
176177
}
177178

178179

180+
179181
/* Smartphone portrait */
180182
/* Cabeçalho */
181183
header {
@@ -455,6 +457,50 @@ footer{
455457
font-weight: bolder;
456458
}
457459

460+
/* Formatação do formulário */
461+
#formulario input[type="text"],
462+
#formulario input[type="email"],
463+
#formulario input[type="tel"],
464+
#formulario textarea {
465+
margin-top: 7px;
466+
width: 100%;
467+
box-sizing: border-box;
468+
padding: 10px;
469+
border-radius: 5px;
470+
border: 1px solid #cccccc;
471+
}
472+
473+
#formulario input[type="submit"],
474+
#formulario input[type="reset"] {
475+
background-color: var(--vermelhoLayout);
476+
border: none;
477+
color: white;
478+
padding: 10px 20px;
479+
border-radius: 5px;
480+
cursor: pointer;
481+
margin-left: 1px;
482+
}
483+
484+
#formulario input[type="reset"] {
485+
background-color: var(--vermelhoLayout);
486+
}
487+
488+
#formulario h2 {
489+
text-align: center;
490+
margin: 50px 0px 25px 0px;
491+
}
492+
493+
#formulario form {
494+
background-color: white;
495+
padding: 20px;
496+
border-radius: 10px;
497+
box-shadow: 0 2px 4px rgba(0,0,0, 0.1,);
498+
}
499+
500+
/* Google Maps */
501+
#maps2{
502+
display: none;
503+
}
458504

459505

460506
/* Smartphone landscape */
@@ -791,7 +837,15 @@ footer{
791837
font-size: 1.6em;
792838
margin-bottom: 10px;
793839
}
794-
840+
841+
/* Google Maps */
842+
#maps1 {
843+
display: none;
844+
}
845+
#maps2 {
846+
display: block;
847+
margin-left: 310px;
848+
}
795849

796850
}
797851

0 commit comments

Comments
 (0)