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
1
Answer:
<html>
<head>
<style>
body {
background-image: url('D\picture\logo.jpg');
}
</style>
</head>
</html>
Explanation:
Similar questions