I created a project, I created a HTML file, a CSS file, and a "assets" file, in which I put another file called "images", in which I included a PNG image.
I copy-paste on my CSS the relative path of this image like this :
body {
background: url(Spaceship/Assets/imgs/bg.jpg);
}
as it didn't work, I tried to copy-paste the path like this :
body {
background: url(/Users/sylvaindelaplace/Documents/Code/Site/Spaceship/Assets/imgs/bg.jpg);
}
And it still doesn't show !! the page stays completely blank (I'm on Chrome)