Learn Basic CSS by Building a Cafe Menu - Step 12

Tell us what’s happening:

I typed in the correct code but still won’t pass. What have i done wrong ?
Sorry, your code does not pass. Keep trying.

You should not add a new style tag. Add the new CSS rules to the existing style tag.

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

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8" />
    <title>Cafe Menu</title>

<!-- User Editable Region -->

    <style>
      h1 {
        text-align: center;
      }

      h2{
        text-align: center;
      }
      
      p{
        text-align: center;
      }
    </style>

<!-- User Editable Region -->

  </head>
  <body>
    <main>
      <h1>CAMPER CAFE</h1>
      <p>Est. 2020</p>
      <section>
        <h2>Coffee</h2>
      </section>
    </main>
  </body>
</html>

Your browser information:

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

Challenge Information:

Learn Basic CSS by Building a Cafe Menu - Step 12

Hello there!
Your code is OK, it passes all tests. Can you reset the lesson and then run the same code?

If that fails, try the following.

  1. Disable affecting browser extensions.
  2. Try using a different browser ensuring the zoom level is set to default.
2 Likes