Create Texture by Adding a Subtle Pattern as a Background Image 2

It’s not letting me through to the next challenge but I can’t figure out what’s wrong. Anyone?

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; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 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

You forgot Quotation marks image

1 Like

Missing syntax :slight_smile:
Always good to open a new tab and search something like “CSS background image” and compare your code to theirs.

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