ok, so i've been following this tutorial on how to add a simple web-responsive background image to a site. now, whatever I try to do, the background image won't show in the browser. This has happened to me before on a simmilar project, the background image wouldn't show, but i fixed that problem by using in line css. This time it didn't work. Strange thing is, I tried to copy-paste the code provided at the end of the tutorial, I copy-pasted the whole thing in separate HTML and CSS files and the funny thing is that the final web page result is showing but the image is not. Please help...
edit1:The project structure is failry simple, the HTML, CSS and .jpeg files are all in one folder.
edit2: SOLVED! Missing quotes in the background-image:url("poza.jpg")
the HTML is:
...
<body>
<h1>The biggest startup event of the year!</h1>
<button>find out more!</button>
</body>
and the CSS for that is:
body,
html {
background-image: url(poza.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
height: 100%;
width: 100%;
font-family: 'Montserrat', sans-serif;
}```