Beginner, learning basics in HTML/CSS I have an issue with the background image. When i code it with outside link like this it is working:
background-image: url(https://furniturefusion.co.uk/wp-content/uploads/2018/07/inspiration-banner1-2.jpg);
When i do it with a downloaded picture (same picture), the image is not showing in a browser.
background-image: url(/images/cover.jpg);
I assume all other (height, weight) is good, since it is working with http.... And image is in the same folder where is index page and style folder.
Where is the problem?