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>
|
<p>
|
||||||
i'm available on matrix: @yukijoou:catgirl.cloud
|
i'm available on matrix: @yukijoou:catgirl.cloud
|
||||||
<br />
|
<br />
|
||||||
more means of communications are comming soon, stay tuned!! (i
|
i also have a temporary email, while i figure out how to host an
|
||||||
know you are excited)
|
email server:
|
||||||
</p>
|
</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>
|
<h1>silly projects</h1>
|
||||||
<p>more coming soon here!</p>
|
<p>more coming soon here!</p>
|
||||||
<p>
|
<p>
|
||||||
|
|
Loading…
Reference in a new issue