Design a Cafe Menu - Step 24

Tell us what’s happening:

I am stuck here please can anyone help me with these

Your code so far

<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Cafe Menu</title>
    <link href="styles.css" rel="stylesheet"/>
  </head>
  <body>
    <div class="menu">
      <main>
        <h1>CAMPER CAFE</h1>
        <p>Est. 2020</p>
        <section>
          <h2>Coffee</h2>
        </section>
      </main>
    </div>
  </body>
</html>
/* file: styles.css */
body {

/* User Editable Region */

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

/* User Editable Region */

}

h1, h2, p {
  text-align: center;
}

.menu {
  width: 80%;
  background-color: burlywood;
  margin-left: auto;
  margin-right: auto;
}

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36 Edg/148.0.0.0

Challenge Information:

Design a Cafe Menu - Step 24

GitHub Link: freeCodeCamp/curriculum/challenges/english/blocks/workshop-cafe-menu/5f35e5c44359872a137bd98f.md at main · freeCodeCamp/freeCodeCamp · GitHub

hello!

Your solution works from my end. Please try one of the following steps to move forward.

Click on the “Restart Step” button and force a refresh of your page with CTRL + F5 then try to paste the code in again.

or - Try the step in incognito or private mode.

or - Disable any/all extensions that interface with the freeCodeCamp website (such as Dark Mode, Ad Blockers, or Spellcheckers), and set your browser zoom level to 100%. Both of these factors can cause tests to fail erroneously.

or - Ensure your browser is up-to-date or try a different browser.

I hope one of these will work for you.

url - should be a string

body {

background-image: url(“https://cdn.freecodecamp.org/curriculum/css-cafe/beans.jpg”);

}

Hi @evlads

I think the quotes around the URL are optional if there aren’t any spaces or special characters. Did you try testing the OP’s code as written?

Happy coding

My mistake. You’re right.

Quotes around the URL are really just a recommended notation to prevent random bugs.
Without the /* User Editable Region */ comment in the body block, everything should work.