Write code in html to display an image as the background of web page
Answers
Answered by
2
Explanation:
<style>
body {
background-image:url('img_girl.jpg');
background-repeat: no-repeat;
background-attachment: fixed;
background-size: 100% 100%;
}
</style>
Similar questions