Learn Basic CSS by Building a Cafe Menu - Step 20

Tell us what’s happening:
Describe your issue in detail here.

Your code so far

<!-- file: index.html -->

<!-- User Editable Region -->

<!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 id="menu">
      <main>
        <h1>CAMPER CAFE</h1>
        <p>Est. 2020</p>
        <section>
          <h2>Coffee</h2>
        </section>
      </main>
    </div>
  </body>
</html>

<!-- User Editable Region -->

/* file: styles.css */
body {
  background-color: burlywood;
}

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

Your browser information:

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

Challenge: Learn Basic CSS by Building a Cafe Menu - Step 20

Link to the challenge:

What happens is that the exercise asks me to nest a div with an id with the value of menu, in the code I reflect the answer I entered, but when I try to solve the answer it marks it as wrong, with the message that I must make sure that nest the div in the body tag. and I don’t know how I would get the correct answer marked.

1 Like

I’m not sure what you are asking/stating here? Can you rephrase to make it a little clearer.

hello bbsmooth, What happens is that the exercise asks me to nest a div with an id with the value of menu, in the code I reflect the answer I entered, but when I try to solve the answer it marks it as wrong, with the message that I must make sure that nest the div in the body tag. and I don’t know how I would get the correct answer marked.

Hmm, your HTML seems correct to me and is passing for me. Try these steps:

  • Reset the step and try again.
  • Hold down the shift key while clicking the reload button on your browser to clear the cache.
  • Close your browser completely and then open it and try again.
  • Try a different browser.