Skip to content

Commit

Permalink
Merge pull request #2063 from AsifQamar/fixfoot
Browse files Browse the repository at this point in the history
Fixed Footer in Homepage
  • Loading branch information
deepeshmlgupta authored Oct 25, 2024
2 parents a6e8698 + ef11f09 commit 3b1d5f5
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2349,13 +2349,35 @@ <h4 class="title custom-margin">Contact Us</h4>
</a>
</div>
</li>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
.social-icons {
display: flex;
gap: 20px;
padding: 20px;
}

.social-icons a {
color: #333;
font-size: 24px;
text-decoration: none;
transition: color 0.3s ease;
}

.social-icons a:hover {
color: #666;
}
</style>
</head>
<body>
<div class="social-icons">
<a href="#"><i class="fa-brands fa-instagram"></i></a>
<a href="#"><i class="fa-brands fa-facebook"></i></a>
<a href="#"><i class="fa-brands fa-x-twitter"></i></a>
<a href="#"><i class="fa-brands fa-discord"></i></a>
<a href="#"><i class="fa-brands fa-github"></i></a>
</div>
</body>

</div>

Expand Down

0 comments on commit 3b1d5f5

Please sign in to comment.