0
How to change background images?
6 Answers
+ 12
u are welcome (Alice Kuersch and me )đđđ
+ 11
<img src="image.jpg" />
+ 3
nope tis
<body background="image location from directory(copy full path from details)">
</body>
+ 2
For CSS I did this
body{
background-image:("www.example.com");
}
+ 1
OK thx
+ 1
This is the correct way. Put the image in the same folder as the html document.
write a css code for body
body{
background-image:url("imagename.jpg");
}