initial build of the site

This commit is contained in:
2026-06-22 13:59:23 -06:00
parent d69fb541f9
commit 85e88dcc62
43 changed files with 1517 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
const p = document.createElement("p");
p.style.textAlign = "center";
p.style.fontSize = "18pt";
p.innerHTML = "C'mon, move your mouse!"
document.body.append(p);
document.addEventListener("mousemove", e => {
p.innerHTML = `mouseX: ${e.clientX}, mouseY: ${e.clientY}`;
});