// Javascript that securise the mailto links const btn = document.getElementById("contact-btn"); btn.addEventListener('click', () => { const u = "hello"; const d = "archnops.com" window.location.href = `mailto:${u}@${d}`; });