Having trouble with the CSS code I wrote for a background-image. It's not showing up when I set it in my CSS stylesheet.
I tested it and found that it only works when written in the body...
<body background="Tokyo.png">
...but not in the style sheet.
html {
background-color: black;
margin: 10px;
}
body {
background: "Images\tokyo.png";
} //This is the CSS code in the style sheet//
I was expecting to see the background image, but unfortunately, it's not displaying as intended.