diff --git a/gmem.ca/index.html b/gmem.ca/index.html index 135a040..a5a209f 100644 --- a/gmem.ca/index.html +++ b/gmem.ca/index.html @@ -4,20 +4,22 @@ - gmem.ca + arch.dog
- +
A cute golden retriever with a stylish blue hairstyle and glasses -

arf arf

+

Arch is a dog

-

*wags tail* awoo woof woof bark

-

yip arf

+

hi! follow me on the fedi

+

check out my fursona

+

check out my projects

+

Buy Me a Coffee at ko-fi.com

@@ -38,6 +40,7 @@ const header = document.querySelector("h1"); const social = document.querySelector("#social"); const fursona = document.querySelector("#fursona"); + const projects = document.querySelector("#projects"); addEventListener("load", (event) => reloaddog()); checkbox.addEventListener('change', function() { @@ -53,10 +56,12 @@ header.innerHTML = "arf arf!"; social.innerHTML = "*wags tail* awoo woof woof bark" fursona.innerHTML = "yip arf" + projects.innerHTML = "grrr ruff" } else { header.innerHTML = "Arch is a dog"; social.innerHTML = "hi! follow me on the fedi" fursona.innerHTML = "check out my fursona" + projects.innerHTML = "check out my projects" } }