It's a bit embarrassing to admit, but I'm learning some new concepts and struggling with this one.
On my computer, there's a folder named Test that contains an index.html
file, a CSS subfolder with an index.css
file, and an images subfolder with a file called logo.png
.
Within my index.css
file, I have the following line of code:
background: url("images/logo.png") no-repeat;
Despite using this line, I can't seem to display the image locally. I've tried variations like /images
and test/images
, but nothing seems to work. How can I successfully view this image while working on it locally?