Create Texture by Adding a Subtle Pattern as a Background Image problem?

Tell us what’s happening:

Can’t move on from here , I’m getting it right but the challenge wont pass me :frowning:

Your code so far


<style>
  body {
   background: url(https://i.imgur.com/MJAkxbh.png); 
  }
  
</style>

Your browser information:

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

Link to the challenge:
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/create-texture-by-adding-a-subtle-pattern-as-a-background-image/

@Cbazil,

I was having the same issue and just now figured it out. Put the image URL in quotes:

background: url(“https://i.imgur.com/MJAkxbh.png”);

There’s no example in the instructions, just one line:

“The link address is wrapped in quotes inside the parentheses.”

…so I do think it’s a little misleading and easy to miss! Could definitely stand to be rewritten.

Thanks, it worked perfectly :slight_smile: