Skip to content

Commit

Permalink
social links
Browse files Browse the repository at this point in the history
  • Loading branch information
Mujahid087 committed Nov 14, 2024
1 parent 37ee2a4 commit a770d31
Showing 1 changed file with 22 additions and 7 deletions.
29 changes: 22 additions & 7 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -482,7 +482,7 @@ <h2>Scoop Up the Savings!</h2>
};


<!-- CSS for toast notification -->
// <!-- CSS for toast notification -->
<style>
.toast-notification {
visibility: hidden;
Expand Down Expand Up @@ -544,7 +544,7 @@ <h2>Scoop Up the Savings!</h2>
var toast = document.getElementById("toast");
toast.className = "toast-notification show";
toast.textContent = message;
setTimeout(function(){ toast.className = toast.className.replace("show", ""); }, 3000);
setTimeout(function(){ toast.className = toast.className.replace("show", "")}, 3000);
}

// Handle form submission
Expand Down Expand Up @@ -1703,11 +1703,26 @@ <h3>Help Desk</h3>
<div class="footer-column">
<h3>Follow Us</h3>
<div class="social-icons">
<a href="#"><i class="fa-brands fa-linkedin"></i></a>
<a href="#"><i class="fa-brands fa-facebook"></i></a>
<a href="#"><i class="fa-brands fa-x-twitter"></i></a> <!-- Updated X icon -->
<a href="#"><i class="fa-brands fa-instagram"></i></a>
<a href="#"><i class="fa-brands fa-pinterest"></i></a>
<a href="https://www.linkedin.com" target="_blank" rel="noopener noreferrer">
<i class="fa-brands fa-linkedin"></i>
</a>

<a href="https://www.facebook.com" target="_blank" rel="noopener noreferrer">
<i class="fa-brands fa-facebook"></i>
</a>

<a href="https://www.twitter.com" target="_blank" rel="noopener noreferrer">
<i class="fa-brands fa-x-twitter"></i> <!-- Updated X icon for Twitter -->
</a>

<a href="https://www.instagram.com" target="_blank" rel="noopener noreferrer">
<i class="fa-brands fa-instagram"></i>
</a>

<a href="https://www.pinterest.com" target="_blank" rel="noopener noreferrer">
<i class="fa-brands fa-pinterest"></i>
</a>

</div>
</div>

Expand Down

0 comments on commit a770d31

Please sign in to comment.