0
I have a problem with adding a background image in my CSS file.
I already linked my CSS file and I gave my body an id but it just won't appear
4 Réponses
+ 5
could you share your code?
+ 1
Thank you for reaching out, Daniel. I already figured it out. It  turns out that my path was not correct. I forgot to go outside my css folder.
body {background: url(../images/sunshine.png);
0
body {background: url(../images/sunshine.png);
        background-color: #cccccc;}
#form {width: 30%;}
- 1
<!DOCTYPE html>
<html>
<head>
	<title>Ifunanya's Blog</title>
	<link rel="stylesheet" type="text/css" href="css/profile.css">
</head>
<body>
		
</body>
</html>



