9 lines
537 B
JavaScript
9 lines
537 B
JavaScript
//the footer of the site would be handled in this javascript file, so you don't have to copypaste the whole thing onto every page.
|
|
//at the bottom of your page, but before the js script calls and the closing body tag, put an empty div with a class of "writeFooter"
|
|
document.querySelector(".writeFooter").innerHTML = `
|
|
<footer>
|
|
<p>AlisonKira 2025</p>
|
|
<p><strong>Powered by</strong></p>
|
|
<a href="https://rarebit.neocities.org"><img src="img/rarebitlogo_small.png" height = "30" /></a>
|
|
</footer>
|
|
`;
|