CBSE BOARD X, asked by artivermalko961, 9 months ago

Write code in html to display an image as the background of web page

Answers

Answered by abirami200014
2

Explanation:

<style>

body {

  background-image:url('img_girl.jpg');

  background-repeat: no-repeat;

  background-attachment: fixed; 

  background-size: 100% 100%;

}

</style>

Similar questions