Contact: Difference between revisions

From HIVE Lab
Jump to navigation Jump to search
Mazumder (talk | contribs)
mNo edit summary
Mazumder (talk | contribs)
mNo edit summary
Line 10: Line 10:
     // Decoding the Base64 email
     // Decoding the Base64 email
     const email = atob('YnRvYSgibWF6dW1kZXJAZ3d1LmVkdSIp'); // replace with Base64 encoded email
     const email = atob('YnRvYSgibWF6dW1kZXJAZ3d1LmVkdSIp'); // replace with Base64 encoded email
     document.getElementById('email').innerHTML = '<a href="mailto:' + YnRvYSgibWF6dW1kZXJAZ3d1LmVkdSIp + '">' + email + '</a>';
     document.getElementById('email').innerHTML = '<a href="mailto:YnRvYSgibWF6dW1kZXJAZ3d1LmVkdSIp' + YnRvYSgibWF6dW1kZXJAZ3d1LmVkdSIp + '">' + email + '</a>';
</script>
</script>



Revision as of 20:03, 16 December 2024

Opportunities

    Main article: Opportunities
Interested in joining our team? Learn about our team.

<script>

   // Decoding the Base64 email
   const email = atob('YnRvYSgibWF6dW1kZXJAZ3d1LmVkdSIp'); // replace with Base64 encoded email
   document.getElementById('email').innerHTML = '<a href="mailto:YnRvYSgibWF6dW1kZXJAZ3d1LmVkdSIp' + YnRvYSgibWF6dW1kZXJAZ3d1LmVkdSIp + '">' + email + '</a>';

</script>