Skip to content

Commit

Permalink
landingpage.html
Browse files Browse the repository at this point in the history
  • Loading branch information
semm00 committed Jul 31, 2024
1 parent 0afa368 commit eb59728
Show file tree
Hide file tree
Showing 7 changed files with 175 additions and 1 deletion.
109 changes: 108 additions & 1 deletion css/estilo.css
Original file line number Diff line number Diff line change
Expand Up @@ -384,17 +384,19 @@ nav .navigation ul li a:hover{
#funções{
padding: 8vw 8vw 0 8vw;
text-align: center;
margin-bottom: 50px;
}

#funções .funções{
text-align: start;
background: #f5f3f3;
height: 100%;
position: relative;
}

#funções .funções img{
width: 100%;
height: 75%;
height: 70%;
background-size: cover;
background-position: center;
}
Expand All @@ -414,3 +416,108 @@ nav .navigation ul li a.hname:hover{
html {
scroll-behavior: smooth;
}

#newsletter {
padding: 6vw 8vw 6vw 8vw;
background-image: linear-gradient(rgba(99, 112, 168, 0.5), rgba(81, 91, 233, 0.5)), url(../imagens/newsletter.png);
width: 100%;
height: 100%;
background-size: cover;
background-position: center;
display: flex;
justify-content: space-between;
align-items: center;
}

#newsletter .reminder {
color: #fff;
}

#newsletter .reminder h1 {
color: #fff;
}

#newsletter .formlp {
background: #fff;
border-radius: 8px;
display: flex;
flex-direction: column;
padding: 40px;
box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

#newsletter .formlp input{
margin: 15px 0;
padding: 15px 10px;
border: 1px solid #246493;
outline: none;
}

#newsletter .formlp input::placeholder{
color: #413c3c;
font-weight: 500;
font-size: 0.9rem;
}

#newsletter .formlp .btn{
margin-top: 20px;
}

#newsletter .formlp a.color2{
text-decoration: none;
font-size: 0.9rem;
padding: 13px 35px;
background-color: #fff;
font-weight: 600;
border-radius: 5px;
color: #fff;
background: #b4820d;
transition: all 0.3s ease;
}

#newsletter .formlp a.color2:hover{
color: #b4820d;
background: #fff;
}

#experts {
padding: 8vw 8vw 0 8vw;
text-align: center;
}

#experts .expert-box{
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
grid-gap: 1rem;
margin-top: 50px;
}

#experts .expert-box img{
width: 80%;
height: 70%;
}

#experts .expert-box .profile{
background: #f5f3f3;
padding: 30px 10px;
border-radius: 5px;
}

.pro-links {
margin-top: 10px;
}

.pro-links i {
padding: 10px 13px;
border: 1px solid #1d2f4e;
cursor: pointer;
color: #1d2f4e;
transition: 0.3s ease;
}

.pro-links i:hover {
background: #1d2f4e;
color: #fff;
border: 1px solid #1d2f4e;
cursor: pointer;
}
Binary file added imagens/newsletter.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added imagens/profile1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added imagens/profile2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added imagens/profile3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added imagens/profile4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
67 changes: 67 additions & 0 deletions landingpage.html
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,73 @@ <h6 class="h6lp">Banco de Redações</h6>
</div>
</div>
</section>

<section id="newsletter">
<div class="reminder">
<h1 class="h1lp">Se Inscreva Na Nossa Newslatter</h1>
<p>Lorem ipsum dolor sit amet. Et culpa officiis qui vero impedit qui magnam placeat</p>
</div>
<div class="formlp">
<h3>Et internos quia vel laudantium!</h3>
<input type="text" placeholder="Nome" name="" id="">
<input type="text" placeholder="E-mail" name="" id="">
<div class="btn">
<a class="color2" href="#">Inscrever-se</a>
</div>
</div>
</section>

<section id="experts">
<h1 class="h1lp"> Nossos Profissionais </h1>
<p class="pazul">conheça alguns dos nossos corretores que fazem a diferença</p>
<div class="expert-box">

<div class="profile">
<img src="imagens/profile1.png" alt="corretores">
<h6 class="h6lp">Matias</h6>
<p>Mestre em Linguagens</p>
<div class="pro-links">
<i class="fa-brands fa-facebook-f"></i>
<i class="fa-brands fa-instagram"></i>
<i class="fa-brands fa-linkedin-in"></i>
</div>
</div>

<div class="profile">
<img src="imagens/profile2.png" alt="corretores">
<h6 class="h6lp">Larissa</h6>
<p>Especialista em Letras</p>
<div class="pro-links">
<i class="fa-brands fa-facebook-f"></i>
<i class="fa-brands fa-instagram"></i>
<i class="fa-brands fa-linkedin-in"></i>
</div>
</div>

<div class="profile">
<img src="imagens/profile3.png" alt="corretores">
<h6 class="h6lp">Kaleb</h6>
<p>Especialista em Literatura</p>
<div class="pro-links">
<i class="fa-brands fa-facebook-f"></i>
<i class="fa-brands fa-instagram"></i>
<i class="fa-brands fa-linkedin-in"></i>
</div>
</div>

<div class="profile">
<img src="imagens/profile4.png" alt="corretores">
<h6 class="h6lp">Verônica</h6>
<p>Mestre em Linguagens</p>
<div class="pro-links">
<i class="fa-brands fa-facebook-f"></i>
<i class="fa-brands fa-instagram"></i>
<i class="fa-brands fa-linkedin-in"></i>
</div>
</div>

</div>
</section>

<script src="js/script.js"></script>

Expand Down

0 comments on commit eb59728

Please sign in to comment.