I added images to a folder called "images" and CSS to a folder called "css", now I want to use images in a folder called "images". How can I do it? When I used this, they did not display:
background: url('/images/bg.jpg');
I also tried:
background: url('../images/bg.jpg'); background: url('../../images/bg.jpg');
What is the path I should use to access my images?
source share