Winwingame
Exness forex
// Add any interactive functionality here if needed
document.addEventListener('DOMContentLoaded', function() {
// Example: Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
});
Comments
Post a Comment