index: Added contact email
This commit is contained in:
parent
2b2e9029ec
commit
9bc9ad7845
1 changed files with 18 additions and 2 deletions
|
@ -47,10 +47,26 @@
|
|||
<p>
|
||||
i'm available on matrix: @yukijoou:catgirl.cloud
|
||||
<br />
|
||||
more means of communications are comming soon, stay tuned!! (i
|
||||
know you are excited)
|
||||
i also have a temporary email, while i figure out how to host an
|
||||
email server:
|
||||
</p>
|
||||
|
||||
<address><a href="#" id="email">[SHOW EMAIL]</a></address>
|
||||
|
||||
<script>
|
||||
const email = atob("eWlraWpvb3VAbGFwb3N0ZS5uZXQ=");
|
||||
const emailDisplay = document.getElementById("email");
|
||||
emailDisplay.addEventListener(
|
||||
"click",
|
||||
(event) => {
|
||||
emailDisplay.href = "mailto:" + email;
|
||||
emailDisplay.innerText = email;
|
||||
event.preventDefault();
|
||||
},
|
||||
{ once: true }
|
||||
);
|
||||
</script>
|
||||
|
||||
<h1>silly projects</h1>
|
||||
<p>more coming soon here!</p>
|
||||
<p>
|
||||
|
|
Loading…
Reference in a new issue