I'm a beginner here. I've encountered an interesting issue - the file paths for images appear correctly in my index.html file, but not for the background image specified in my css file.
Both image files are located in the same directory: Root directory > img folder > images
Here's how my image code looks like in HTML: <src="img/imgname.extension" alt="something" /> And this is how I have set the background image in the css: background: url("img/imgname.extension")
Am I using the correct file path?