Thank you @edper. I’m still not sure how the syntax would look like if I were to put it " either inside the <head> or at the bottom of the <body></body> ." Do you mind showing me how that would work?
You’ve put HTML markup inside the <script> tag. The browser has no idea what to do with that because it only understands that, inside the script tag, there should be some JavaScript code for it to read.
And if you supply the <script> tag with a src, then you are also saying “the JS code is coming from an external source, not from inside the tag”.
So (this will load before all the HTML on the page):
<head>
<!-- some other stuff here -->
<script src="https://link-to-script"></script>
<head>
Or (this will load after all the HTML on the page):
<body>
<!-- some other stuff here -->
<script src="https://link-to-script"></script>
</body>