Skip to content

Commit 167ff57

Browse files
Merge pull request #2406 from SrijaVuppala295/x
Changing the Social Media Icons !!
2 parents 5dbed93 + 567e57c commit 167ff57

File tree

1 file changed

+73
-1
lines changed

1 file changed

+73
-1
lines changed

index.html

Lines changed: 73 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4026,7 +4026,79 @@ <h3>Follow Us</h3>
40264026

40274027
}
40284028
</style>
4029-
4029+
4030+
</head>
4031+
<body>
4032+
<div class="share-section">
4033+
<button id="shareBtn">Share Us</button>
4034+
</div>
4035+
</div>
4036+
</section>
4037+
<script>
4038+
document.getElementById('shareBtn').addEventListener('click', function() {
4039+
if (navigator.share) {
4040+
navigator.share({
4041+
title: 'Contact Us',
4042+
text: 'Check out this Contact Us page!',
4043+
url: window.location.href
4044+
}).then(() => {
4045+
console.log('Thanks for sharing!');
4046+
}).catch((error) => {
4047+
console.error('Error sharing:', error);
4048+
});
4049+
} else {
4050+
alert('Web Share API is not supported in your browser.');
4051+
}
4052+
});
4053+
</script>
4054+
</a></li>
4055+
4056+
<!-- Bottom Links Section -->
4057+
<ul class="gridbox">
4058+
<li><a href="#">Help Centre</a></li>
4059+
<li><a href="./welcometestimonials.html">Testimonials</a></li>
4060+
<li><a href="#">Account</a></li>
4061+
<li><a href="#">Media Centre</a></li>
4062+
<li><a href="./terms.html">Terms of Use</a></li>
4063+
<li><a href="./privacy.html">Privacy</a></li>
4064+
4065+
<li><a href="#">Cookie Preferences</a></li>
4066+
<li><a href="./contact.html">Contact Us</a></li>
4067+
4068+
</ul>
4069+
4070+
<!-- Footer Bottom -->
4071+
<div class="footer-bottom">
4072+
<div class="social-icons">
4073+
<a href="#"><i class="fab fa-facebook-f"></i></a>
4074+
<a href="#" class="x-icon" aria-label="X">
4075+
X
4076+
</a>
4077+
4078+
<style>
4079+
.x-icon {
4080+
font-size: 20px; /* Adjust font size as needed */
4081+
color: black; /* Adjust color as needed */
4082+
text-decoration: none;
4083+
font-weight: bold;
4084+
font-family: Arial, sans-serif;
4085+
}
4086+
</style>
4087+
4088+
<a href="#"><i class="fab fa-instagram"></i></a>
4089+
<a href="#"><i class="fab fa-linkedin-in"></i></a> <!-- LinkedIn -->
4090+
<a href="#"><i class="fab fa-youtube"></i></a> <!-- YouTube -->
4091+
<a href="#"><i class="fab fa-pinterest"></i></a> <!-- Pinterest -->
4092+
<a href="#"><i class="fab fa-snapchat-ghost"></i></a>
4093+
</div>
4094+
<p>© 2024 Open Projects. All Rights Reserved. </p>
4095+
</div>
4096+
</footer>
4097+
4098+
</body>
4099+
4100+
</html>
4101+
40304102

40314103

40324104
<button id="scrollToTopBtn" title="Go to top"><i class="ri-arrow-up-double-fill"></i></button>

0 commit comments

Comments
 (0)