Computer Science, asked by sktskt6534, 8 months ago

Write the html code for
To set background image of the web page, image stored in D drive under picture folder with name logo. jpg.

Answers

Answered by mohammads
1

Answer:

<html>

<head>

<style>

body {

background-image: url('D\picture\logo.jpg');

}

</style>

</head>

</html>

Explanation:

Similar questions