0
How do make a image as a background to a website?
Do u have to save the html file in the same saver with the image or u can just get any image
3 Respuestas
0
i have tried, shud i save both my css file in the same folder with the images i want to use?
+ 5
You can do that by using the background-image property in CSS:
body {
background-image: url("image.gif");
}
+ 4
Yes.