Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 43 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,50 @@ <h2>
Join our community by using our services and grow your business.
</h2>
<a href="" class="btn-primary">Try it for free</a>
<hr><hr>
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

aca no es necesario poner ambas etiquetas con un


es suficiente :)

</div>
<div class="container">
<div class="footer-info">
<div class="footer-content">
<div class="logo">
<img src="./img/logo-light.svg" alt="">
</div>
<div class="footer-rights">
<p class="footer-p">© Sandbox.</p>
<p class="footer-p">All rights reserved.</p>
</div>
</div>
<div class="footer-content">
<h4>Get in Touch</h4>
<p class="footer-p">Moonshine St. 14/05 Light City, London,United Kingdom</p>
<p class="footer-p">info@email.com 00 (123) 456 78 90</p>
</div>
<div class="footer-content">
<h4>Learn More</h4>
<ul class="footer-links">
<li><a href="" >About us</a></li>
<li><a href="" >Our Story</a></li>
<li><a href="" >Projects</a></li>
<li><a href="" >Terms of Use</a></li>
<li><a href="" >Privacy Policy</a></li>
</ul>
</div>
<div class="footer-content">
<h4>Our newsletter</h4>
<p class="footer-p">Subscribe to our newsletter to get our news & deals delivered to you.</p>
<form action="">
<div class="newsletter">
<div class="input-email">
<input type="email" placeholder="Email Address" class="footer-email">
</div>
<div class="input-button">
<input type="submit" value="Join" class="footer-join">
</div>
</div>
</form>
</div>
</div>
</div>
</footer>
<script src="index.js"></script>
</body>
Expand Down
90 changes: 90 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
--white: #ffffff;
--light-gray: #f0f8fe;
--gray: #fefefe;
--footer-p: #CACACA;
}

body {
Expand Down Expand Up @@ -58,6 +59,14 @@ h3 {
line-height: 32px;
}

h4{
color: var(--white);
font-size: 20px;
font-weight: 600;
line-height: 29px;
}


img {
max-width: 100%;
}
Expand Down Expand Up @@ -187,6 +196,79 @@ ul {
}
}

.footer-p{
color: var(--footer-p);
margin: 5px;
}

.footer-links{
color: var(--footer-p);
display: flex;
flex-direction: column;
font-size: 17px;
gap: 20px;
line-height: 22px;
margin-top: 10px;

& a{
color: #CACACA;
margin-top: 10px;
}

}

.footer-email{
background-color: var(--heading-color);
border: 1px solid;
border-color:#60697B;
border-radius: 5px;
height: 29px;
outline: none;
padding: 10px;
width: 136px;
}

input::placeholder {
font-family: "Urbanist", sans-serif;
color: #959CA9;
font-weight: 500;
font-size: 15px;
line-height: 25px;
}

.newsletter{
display: flex;
margin-top: 20px;
}


.footer-join{

background-color: #5EB9F0;
border-radius: 5px;
border-color:#60697B;
border: 1px;
color: var(--white);
font-family: "Urbanist", sans-serif;
font-size: 15px;
height: 29px;
line-height: 25px;
outline: none;
width: 50px;
cursor: pointer;
}

.footer-info{
display: flex;
flex-wrap: wrap;
flex-direction: column;
gap: 20px;
margin: 40px 0;
}




.hero {
padding: 60px 0;

Expand Down Expand Up @@ -423,6 +505,14 @@ ul {

.footer-container {
grid-template-columns: repeat(2, 1fr);
& .btn-primary{
align-self: center;
}
}

.footer-info{
display: grid;
grid-template-columns: repeat(4,1fr);
}

.hero-container {
Expand Down