I do not know what happens if I am correctly linking the image to the body with the background-image property. On the other hand when I use it with style from the html in the body if the load is normal. This is the html:
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="css/estilodrum.css">
<title>Drumbox</title>
</head>
<body>
</body>
</html>
And this is the CSS:
body{
background-image: url('img/concierto.png');
}
When I enter the console it shows me this error: Failed to load resource: net :: ERR_FILE_NOT_FOUND
What could it be?