Learn Basic CSS by Building a Cafe Menu - Step 28

Hello need some help :frowning:
here’s my css code below :

body {

background-image: https://cdn.freecodecamp.org/curriculum/css-cafe/beans.jpg;
}

this is the error and hints :

Test

Sorry, your code does not pass. You’re getting there.

You should set the background-image property to url(https://cdn.freecodecamp.org/curriculum/css-cafe/beans.jpg).

please give me the answer, im a little bit slow learner, i already search it on the w3 school and im doing the same code for .

body {
background-image: (url link) ;
}

Gotcha!!! I already resolved it :slight_smile:

the error is because i didnt include the ##url ()##.

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

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.