Why isn't the page background image displayed?
The background color is there, it means style1.css is connected.
body { background-image: url(style/images/bg1.jpg); background-color: 51ff44; } <html> <head> <title> Repairing phones </title> <link rel="stylesheet" type="text/css" href="style/style1.css" /> </head> <body> </body> </html> But if you make the background in index.html, and not in style1.css, then everything works fine.
<html> <head> <style> body { background-image: url(style/images/bg1.jpg); background-color: 51ff44; } </style> <title> Repairing phones </title> </head> <body> </body> </html> 

