Where Is A Valid Link That Will Allow Me To Pass The Challenge?

Tell us what’s happening:
Your

body

element should have a

background

property set to a

url()

with the given link.

Your code so far


<style>
body {
background: url (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/78.0.3904.108 Safari/537.36.

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

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

you have written url (), that is a great difference even if it is a small single character

1 Like

No I Do Not Have A Written url(). I Was Hoping Someone Could, Come With The Correct url(). So I Could Pass The Challenge Once & For All. I Been Dealing With This Challenge For 2 Weeks.

What @ilenia is saying is to fix the space between url and the parenthesis.

body {
background: url (https://cdn-media-1.freecodecamp.org/imgr/MJAKxbh.png)
}

/*Should be*/ 
body {
background: url(https://cdn-media-1.freecodecamp.org/imgr/MJAKxbh.png) 
/*No space after url*/
}

@austinmoore1492 Thank You Very Much For Your Immediate Assistance…(Seriously!)