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

Tell us what’s happening:

Your code so far



<style>

body {
background-property: https://cdn-media-1.freecodecamp.org/imgr/MJAkxbh.png;
}

</style>

Your browser information:

User Agent is: Mozilla/5.0 (Linux; Android 6.0.1; SM-G532F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Mobile Safari/537.36.

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

Link to the challenge:

Whenever you’re including some kind of file in CSS, you need to use url().
So if I need for example to link to an image file in css named photo.png I would use url(photo.png) instead of only using photo.png.

Full solution (if you’re totally stuck):

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

(and thanks to @Roma for helping to make my answer better :heart: )

It is great that you solved the challenge, but instead of posting your full working solution, it is best to stay focused on answering the original poster’s question(s) and help guide them with hints and suggestions to solve their own issues with the challenge.

We are trying to cut back on the number of spoiler solutions found on the forum and instead focus on helping other campers with their questions and definitely not posting full working solutions.

Thank you for understanding.

1 Like