Javascript Style Change Not Working
Hello all,
I'm getting into WebDev. I learned some Javascript a year ago, and I'm trying to relearn now. I attempted this simple exercise from the online class I took last year; it's supposed to change the h1 color to pink using Javascript:
var h1 = document.querySelector("h1");
h1.style.color = "pink";
When I type this in, nothing happens. I looked at the console on the preview page and got this error message: "Failed to load resource: the server responded with a status of 404 (Not Found)"
I don't understand what is "not found" and why. I would appreciate any help you can offer. If you need clarification, I can provide more code and context.
Thanks in advance!


