I have an HTML file with a subdirectory called
img
debut_dark.png
body {
background: url(/img/debut_dark.png) repeat 0 0;
}
According to your CSS file path, I will suppose it is at the same directory with your HTML page, you have to change the url
as follows:
body { background: url(img/debut_dark.png) repeat 0 0; }