Skip to content
Binary file added Instagram-Logo-White-300x300.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
236 changes: 236 additions & 0 deletions f4lifecontato.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,236 @@
* {
margin: 0;
padding: 0;
font-family: 'Noto Sans JP', sans-serif;
}
body{
width: 100%;
height: 1080px;
}
header {
background: #132235;
width: 100%;
height: 90px;
display: flex;
justify-content: space-between;
align-items: center;
position: sticky;
top: 0px;
}
nav{
width: 40%;
display: flex;
justify-content: space-evenly;
align-items: center;
}
a{
text-decoration: none;
color: white;
}
.imageHeader {
width: 240px;
height: 90px;
outline: 0;
border: 0px;
display: block;
}
.imageHeader:hover {
opacity: 50%
}
.menuContato:hover{
opacity: 50%;
}
.menuFAQ:hover{
opacity: 50%;
}
.menu:hover{
opacity: 50%;
}

section{
width: 100%;
height: 100%;
background-color: #2d395d;
}

/*Formulario*/

h1{
padding: 50px 0 50px 0;
text-align: center;
color: white;
font-size: 60px;
}
section p{
text-align: center;
color: white;
font-size: 30px;
}
form{
text-align: left;
width: 500px;
height: 500px;
margin: auto;
color: white;
}
label{
display: block;
padding: 50px 0 0 0;
font-size: 20px;
}
input{
border: solid 2px #6cd8d1;
width: 500px;
height: 30px;
font-size: 2vw;

}
input:active{
border: #6cd8d1 3px solid;
}
input:focus{
border: #6cd8d1 3px solid;
}
select{
display: block;
width: 500px;
height: 30px;
border: solid 2px black;
}

select:focus{
border: #6cd8d1 3px solid;
}

textarea{
display: block;
width: 500px;
height: 200px;
border: solid 2px black;
}

textarea:focus{
border: #6cd8d1 3px solid;
}

@media screen and (max-width:650px){
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Essa página também ficou muito boa no formato mobile, mas poderia ter colocado uma margem para que o formulário não ficasse tão próximo da borda da tela
image


header{
flex-direction: column;
}

header p {

text-align: center;
color: white;
font-size: 15px;

}

h1{
padding: 50px 0 50px 0;
text-align: center;
color: white;
font-size: 35px;
}
section p{
text-align: center;
color: white;
font-size: 15px;
}



form{
text-align: left;
width: 100%;
height: 200px;
margin: auto;
color: white;
}

label{
display: block;
width: 100%;
padding: 50px 0 0 0;
font-size: 15px;
}


input{
border: solid 2px #6cd8d1;
width: 100%;
height: 30px;
font-size: 15px;

}


select{
display: block;
width: 100%;
height: 30px;
border: solid 2px black;
}

body {
width: 100%;
height: 1080px;
}

textarea{
display: block;
width: 100%;
height: 100px;
border: solid 2px black;
}

}



/* Footer */

footer {
background: #00000F;
height: 235px;
width: 100%;
display: flex;
flex-direction: column;
bottom: 0;
position: relative;
}
.faceLogo {
margin-top: 30px;
margin-left: 13px;
width: 30px;
height: 30px;
}
.faceLogo:hover{
opacity: 50%;
}
.instaLogo {
margin-top: 30px;
margin-left: 13px;
width: 30px;
height: 30px;
}
.instaLogo:hover{
opacity: 50%;
}
.twitterLogo {
margin-top: 30px;
margin-left: 13px;
width: 30px;
height: 30px;
}
.twitterLogo:hover{
opacity: 50%;
}
.copyRight {
color: white;
font-size: 13px;
margin-bottom: 10px;
justify-content: flex-end;
text-align: center;
}
45 changes: 45 additions & 0 deletions f4lifecontato.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" type="text/css" href="f4lifecontato.css">
<link href="https://fonts.googleapis.com/css?family=Noto+Sans+JP&display=swap" rel="stylesheet">
<title>Document</title>
</head>
<body>
<header>
<a href="homef4life.html"><img src="f4lifemenor.png" class="imageHeader"></a> <nav><p><a href="f4lifecontato.html" class="menuContato">Contato</a></p>
<p><a href="f4lifefaq.html" class="menuFAQ">FAQ</a><p><a href="quemSomosf4life.html" class="menu">Quem Somos</a></nav>
</header>
Comment on lines +12 to +15
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Cuidado com indentação

<section>
<h1>Fale conosco</h1>
<p>Estamos à sua disposição de segunda à sexta das 8:30hs às 17:30hs, aos sabados das 9:00hs à 13:00hs, Entre em contato conosco, será um prazer lhe atender!</p>
<form>
<label for="nome">Nome : </label>
<input type="text" id="nome">
<label for="email">Email : </label>
<input type="email" id="email">
<label for="tel">Telefone : </label>
<input type="tel" id="tel">
<label for="assunto">Assunto : </label>
<select id="assunto">
<option>Informações</option>
<option>Dúvidas</option>
<option>Sugestões</option>
<option>Críticas</option>
<option>Outros</option>
</select>
Comment on lines +27 to +33
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Booooa 😄

<label for="mensagem">Mensagem :</label>
<textarea id="mensagem"></textarea>
</form>
</section>
<footer>
<a target="_blank" href="https://www.facebook.com/"><img src="white-facebook-icon-transparent-0.jpg" alt="facebook" class="faceLogo"></a>
<a target="_blank" href="https://www.instagram.com/?hl=pt-br"><img src="Instagram-Logo-White-300x300.png" alt="instagram" class="instaLogo"></a>
<a target="_blank" href="https://twitter.com/login?lang=pt"><img src="twitter-xxl.png" alt="twitter" class="twitterLogo"></a>
<p class="copyRight">Copyright © 2019 | Designer by Yan Corrêa, Jhonatan Felipe and Brian Mello </p>
</footer>
</body>
</html>
Comment on lines +37 to +45
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Cuidado com indentação

Loading