Skip to content

Commit

Permalink
complete
Browse files Browse the repository at this point in the history
  • Loading branch information
mdmhrz committed Jan 13, 2025
1 parent e30acdc commit 07a09f9
Show file tree
Hide file tree
Showing 2 changed files with 102 additions and 4 deletions.
39 changes: 39 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,9 @@ <h1>Our Awesome Portfolio</h1>
</section>
<section id="newsletter">
<img src="/images/Group 61.png" alt="">
<br>
<h1>Subscribe Newsletter</h1>
<br>
<p>Dolor sit amet consectetur. Consequat eget consectetur maecenas sed molestie malesuada. Ipsum sed sodales
risus ut pellentesque vel euismod. </p>
<form action="" class="flex align justify">
Expand All @@ -106,6 +108,43 @@ <h1>Subscribe Newsletter</h1>
</section>
</main>
<footer>
<div class="footer-text">
<div>
<p>
44, Big Building Roosevelt Street
<br>
Beach Gardens Florida 33410
</p>
</div>
<div>
<div class="flex align ft-flex">
<img src="/icons/Call.png" alt="">
<span>+00 123 584 124</span>
</div>
<div class="flex align ft-flex">
<img src="/icons/Website.png" alt="">
<span>www.website.com</span>
</div>
</div>
</div>
<br>
<hr>
<br>
<div class="social-icons">
<a href="https://www.facebook.com/" target="_blank"><img src="/icons/Facebook.png" alt=""></a>
<a href="https://www.instagram.com/" target="_blank"><img src="/icons/Instagram.png" alt=""></a>
<a href="https://www.linkedin.com/company/demo" target="_blank"><img src="/icons/Linkedin.png" alt=""></a>
<a href="https://x.com/demo" target="_blank"><img src="/icons/Twitter.png" alt=""></a>
</div>
<br>
<hr>
<br>
<div class="rights-claim flex align">
<small>2025, All Rights Reserved.</small>
<button>Unsubscribe</button>
</div>
<br>
<br>

</footer>

Expand Down
67 changes: 63 additions & 4 deletions style/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ section {
/* Main styles */


body {
main {
padding: 20px 140px;
}

Expand Down Expand Up @@ -302,7 +302,7 @@ body {
}

#newsletter h1 {
font-size: 40px;
font-size: 36px;
}

#newsletter form {
Expand All @@ -311,21 +311,80 @@ body {
}

#newsletter form input {
padding: 20px 20px;
padding: 15px 20px;
font-size: 16px;
border: none;
outline: none;
border-radius: 20px 0 0 20px;
width: 400px;
}

#newsletter form input::placeholder {
font-size: 12px;
}

#newsletter form button {
padding: 20px 20px;
padding: 15px 20px;
background-color: #FF0000;
border-radius: 0 20px 20px 0;
border: none;
outline: none;
color: white;
font-weight: bold;
cursor: pointer;
font-size: 16px;
transition: background-color .5s;
}

#newsletter form button:hover {
background-color: #da0a0a;

}

.footer-text {
display: flex;
justify-content: space-between;
}

footer {
background-color: black;
color: white;
padding: 20px 140px;
font-size: 12px;
}

.social-icons {
text-align: center;
}

.social-icons img {
margin-right: 15px;
width: 30px;
}

.rights-claim {
justify-content: space-between;
}

.rights-claim button {
color: black;
background-color: white;
padding: 10px 20px;
font-weight: 500;
font-size: 14px;
border-radius: 5px;
cursor: pointer;
}

.rights-claim button:hover {
background-color: rgb(184, 182, 182);
}

.ft-flex {
justify-content: flex-end;
gap: 10px
}

footer hr {
border-color: rgba(128, 128, 128, 0.393);
}

0 comments on commit 07a09f9

Please sign in to comment.