Write the HTML Code: To display the background image (rose.jpg
Answers
Answered by
65
◍ Code to display the background image(rose.jpg) will be:-
________________________________
<style>
body {
background-image: url('img_rose.jpg');
background-repeat: no-repeat;
background-attachment: fixed;
background-size: 100% 100%;
}
</style>
________________________________
Similar questions