Files
fedizinefest/scripts/footer.js
Glitch (glitch-hello-website) af1be2e496 🖇🐓 Checkpoint
./scripts/footer.js:69682263/430
./signup/index.html:69682263/6946
./index.html:69682263/5348
./for-artists/index.html:69682263/256
./styles/main.css:69682263/25
2024-12-12 04:27:30 +00:00

16 lines
475 B
JavaScript

/* populate footer */
let footerHTML = `
<p>Created by <a href="https://leecat.art">Lee Cattarin</a> with help from:</p>
<ul>
<li><a href="https://flipping.rocks/@mycrowgirl">Lisa</a> (color palette)</li>
</ul>
<p>Site feedback? Questions? <a href="mailto:lee.cattarin@gmail.com?subject=fediZineFest">Reach out to Lee</a></p>
`
function populateFooter() {
let footer = document.getElementById("footer");
footer.innerHTML = footerHTML;
}
populateFooter();