0
how to add a background image?
3 Answers
+ 1
You need CSS for that. For example, to add a background image to your body element:
body {
background-image: url("myimage.jpg");
}
You can add the background-image CSS property to almost any HTML block element, such as divs, tables, paragraphs, etc.
0
CSS, does that go with Html?
0
write background-image on body{}