Hello, I am a beginner in HTML and I am trying to add a background image to the body. Below is the code that I have tried:
<!doctype html >
<html>
<head>
<title> Learning HTML</title>
<style>
body{
background-image: url("C:\Users\vs\Downloads\html\VnoRpdq.gif");
}
</style>
</head>
<body>
<h1> This Home Page</h1>
<h2>ADDED BACKGROUND</h2>
</body>
</html>
The path, file name, and extension of the image are all correct.