Design a Cafe Menu - Step 16

Tell us what’s happening:

Ich habe ein div-Element gefügt und habe alle anderen Elemente in das neue div verschieben. Trotzdem kommt die Fehlermeldung "Sie sollte alle anderen Elemente in das neue div verschieben.
Mein Code sieht wie unten aus:

Cafe Menu

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>

<!-- User Editable Region -->

   <body>
    <div id="menu">
      <main>
        <h1>CAMPER CAFE</h1>

        <section>
          <h2>Coffee</h2>
        </section>

      </main>
    </div>
  </body>


<!-- User Editable Region -->

</html>
/* file: styles.css */


#menu{
  background-color:burlywood
}
#menu h1,
#menu h2,
#menu p {
  text-align: center;
}

Your browser information:

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

Challenge Information:

Design a Cafe Menu - Step 16

GitHub Link: i18n-curriculum/curriculum/challenges/german/blocks/workshop-cafe-menu/5f356ed6cf6eab5f15f5cfe6.md at main · freeCodeCamp/i18n-curriculum · GitHub

Welcome to the forum @Belal2,

It looks like you may have changed the starting code in areas you were not asked to change, which will cause the tests to fail. Please click the reset button to restore the original code and try again.

Only make the changes asked in the instructions. Do not make any other changes to the code.

image

Happy coding