+ 10
How to apply back ground image in html
Please help me
3 Respuestas
+ 12
background image attribute is not supported HTML5. Use CSS for it
for example
body {
background-image: url("pattern.gif");
background-color: #ffffff;
}
+ 11
simple touch of CSS
body
{
background-image: url("img.png");
}
+ 5