Create Texture by Adding a Subtle Pattern as a Background Image2

Tell us what’s happening: for some reason, the code isnt right, ive looked at other solutions (such as removing the spaces) but they dont seem to work

Your code so far
body {
background:url(https://i.imgur.com/MJAkxbh.png);

}


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

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.99 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 only need one line (you have two right now)
Remove one.
When you have one left, just add one single space character between the word ‘background’ and ‘url’
and then put the URL in double quotes like this:

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

thank you very much!

1 Like