Answers for "how to add a jpg background in html"

CSS
5

how to change background image in html

<style>
div {
  background-image: url('img_girl.jpg');
}
</style>
Posted by: Guest on July-24-2020
0

body background image in html

body {
  background-image: url('img_girl.jpg');
}
Posted by: Guest on December-24-2020

Code answers related to "how to add a jpg background in html"

Browse Popular Code Answers by Language