Learn Basic CSS by Building a Cafe Menu - Step 28

idk how to do it?

body {
   background-image=url(htpps://cdn.freecodecamp.org/curriculum/css-cafe/beans.jpg)

}

instructions
Since the cafe’s main product for sale is coffee, you could use an image of coffee beans for the background of the page.

Delete the comment and its contents inside the body type selector. Now add a background-image property and set its value to url(https://cdn.freecodecamp.org/curriculum/css-cafe/beans.jpg).

https

it helps to just copy and paste the URL rather than to type it and make mistakes

still doesnt work

body {
   background-image = url(https://cdn.freecodecamp.org/curriculum/css-cafe/beans.jpg)
}

@darkhacker123
Also,
In CSS, we can’t assign attributes-values with = sign.
Instead, use : sign

p {
  font-family: some_font_family;
}
1 Like

Hello,
You have a syntax error, instead of = there must be : .

1 Like

------------------thanks---------------------------------

1 Like