✧ WELCOME TO MY CORNER OF THE INTERNET ✧ THANKS FOR STOPPING BY ✧ PLEASE SIGN MY GUESTBOOK ✧ BEST VIEWED WITH EYES ✧ 100% HAND-CODED ✧

✧ NESSIE MAN✧

[ NERD • SILLY GOOSE • ADDICTED TO SLIME ]
★ ☆ ✦ ✧ ☆ ★

about me

hii!! i'm Alex — i build cute little corners of the web and drink way too much coffee doing it ☕✨ i love front-end design, pixel art, and finding excuses to add glitter to everything. when i'm not coding you'll find me thrifting, making playlists, or redecorating my desktop icons for the 100th time. this is my little internet home — make yourself comfy!

top 8 projects

NOW PLAYING: "midnight static" — lofi.fm radio ▶

guestbook

jamie_xo07.02.26
omg i love your page!! the sparkles are everything ✨
pixel_pete06.28.26
certified y2k royalty 👑 keep it up!!
glitterbug06.19.26
the top 8 grid is so cute, added u to mine too 💜
100% HUMAN MADE
CODED W/ LOVE
Y2K FOREVER
SPARKLE CERTIFIED
NO COOKIES 🍪
// guestbook signing (in-memory only, resets on reload) function signGuestbook(){ const name = document.getElementById('gbName').value.trim(); const msg = document.getElementById('gbMsg').value.trim(); if(!name || !msg){ return; } const entry = document.createElement('div'); entry.className='gb-entry'; const today = new Date(); const dateStr = String(today.getMonth()+1).padStart(2,'0')+'.'+String(today.getDate()).padStart(2,'0')+'.'+String(today.getFullYear()).slice(2); entry.innerHTML = `${escapeHtml(name)}${dateStr}
${escapeHtml(msg)}`; document.getElementById('guestbook').prepend(entry); document.getElementById('gbName').value=''; document.getElementById('gbMsg').value=''; } function escapeHtml(str){ const d = document.createElement('div'); d.textContent = str; return d.innerHTML; }