diff options
Diffstat (limited to 'content/about.md')
| -rw-r--r-- | content/about.md | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/content/about.md b/content/about.md index c974212..90b1e36 100644 --- a/content/about.md +++ b/content/about.md @@ -4,10 +4,13 @@ title = 'About' My name is Hunter. I'm a hobbyist multimedia programmer from Minnesota. -I can be reached at <span id="my-email">hunter @ \<this domain\></span>, or https://x.com/hk_kvog. +I can be reached at <span id="my-email">(hover to reveal email)</span>. <script> - let address = atob('aHVudGVyQGt2b2cuc2g='); - document.getElementById('my-email').innerHTML = `<a href="mailto:${address}">${address}</a>` + let d = document.getElementById('my-email'); + d.addEventListener('mouseenter', () => { + let address = atob('aHVudGVyQGt2b2cuc2g='); + d.innerHTML = `<a href="mailto:${address}">${address}</a>`; + }); </script> This website's source code can be downloaded here: [master.tar.gz](https://github.com/kvog-git/kvog.sh/archive/refs/heads/master.tar.gz). |