Background isn't working

Tell us what’s happening:

Background isn’t working

Your code so far


<style>
body {
background:https://cdn-media-1.freecodecamp.org/imgr/MJAkxbh.png
}
</style>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36.

Challenge: Create Texture by Adding a Subtle Pattern as a Background Image

Link to the challenge:

You need to wrap the background in a url() for it to render

<style>
body {
background: url("https://cdn-media-1.freecodecamp.org/imgr/MJAkxbh.png")
}
</style>
2 Likes