+ 3
How to add a background image in a html document?
Is there any way .....?
4 Antwoorden
+ 11
by using CSS:
body{
background-image:url("put url here");
}
+ 10
why don't you try it in the code playground
+ 9
body {
background-image:url("url");
background-position:fixed;
background-repeat:none;
}
+ 2
but background image attribute is not supported in HTML 5