CSS background image not showing
So this image won't work for some reason. Is the layout wrong or something? The CSS file is linked because its width is right and the font is right, it`s just the image that`s not working. I have a folder called Prog, which has two folders called CSS and HTML, HTML has Blog.html as a file and CSS has a folder called Blog that has Blog.css and the image as a file. <!DOCTYPE html> <html lang="en" dir="ltr"> <head> <meta charset="utf-8"> <title>ggg</title> <link rel="stylesheet" href="C:\Users\john8\OneDrive\Desktop\Prog\CSS\Blog\Blog.css"> </head> <body> <header id="main_header"> <div class="container"> Sal_Toosh </div> </header> </body> </html> body{ font:Arial, sans-serif; } .container{ width:80%; margin:auto; } #main_header{ font:900 20px; background-image:url("C:\Users\john8\OneDrive\Desktop\Prog\CSS\Blog\Header.jpg"); height:1000px; }