Tell us what’s happening:
Your code so far
<style>
body {
backgound: url("https://i.imgr/MJAkxbh.png")
}
</style>
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36.
Challenge: Create Texture by Adding a Subtle Pattern as a Background Image
Link to the challenge:
Hey @tanvisoral655!
You’re using wrong url to background image.
You’ve to use https://cdn-media-1.freecodecamp.org/imgr/MJAkxbh.png instead of https://i.imgr/MJAkxbh.png.
<style>
body {
background: url(https://cdn-media-1.freecodecamp.org/imgr/MJAkxbh.png);
}
</style>
It’s working fine for me.
You can try solving it any other browser or try disabling your extensions as they might be blocking you from passing the tests.
Hey @tanvisoral655,
It looks like you have a typo on your code. backgound is not the same as background. See, sometimes you just missed a simple typo.
Thank you so much, I have wasted a lot of time in such a silly mistake.