Hello people,can someone help me,am stuck here

Tell us what’s happening:

Your code so far


<style>
body {
https background-color="white"://cdn-media-1.freecodecamp.org/imgr/mjakxbh.png background-color: white
}
</style>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.100 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

remember that it is always rule-name: rule value
as it is it seems that your rule name is https background-color="white" as that it is what is bfore the colum

do you understand what css rule you need to use here?

no,am just confused.this is the instruction ( Using the url of https://cdn-media-1.freecodecamp.org/imgr/MJAkxbh.png , set the background of the whole page with the body selector.)i have tried what i knoe,but its not working.

this is the instruction ( Using the url of https://cdn-media-1.freecodecamp.org/imgr/MJAkxbh.png , set the background of the whole page with the body selector.) i have tried my own way,but its not working

so the selector is body, the rule is background

this is what you have written, it is not even remotely likely to a css rule:

https background-color="white"://cdn-media-1.freecodecamp.org/imgr/mjakxbh.png background-color: white

then there is

The background property supports the url() function in order to link to an image of the chosen texture or pattern.

and

Using the url of https://cdn-media-1.freecodecamp.org/imgr/MJAkxbh.png ,

you can put the stuff together. You can use the url() function to use an url as value for a rule that fill something, like background, so you can use an image instead of a solid color

3 Likes