Learn Basic CSS by Building a Cafe Menu - Step 11

Tell us what’s happening:

I have put the h1 in the style like it says and it still says it’s not there???

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;
      }
    </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/136.0.0.0 Safari/537.36 Edg/136.0.0.0

Challenge Information:

Learn Basic CSS by Building a Cafe Menu - Step 11

I tested and it worked here, what’s being the issue appointed by the step?

I tried the same and just keep getting the same errors:

  1. You should have an
h1

selector in your

style

element.

  1. Your
text-align

property should have a value of

center

. 3. Your

h1

selector should set the

text-align

property to

center

.

hi @joaquinleemeis , we are unable to help you in someone else’s topic, please create your own

If you have a question about a specific challenge as it relates to your written code for that challenge and need some help, click the Help button located on the challenge. This button only appears if you have tried to submit an answer at least three times.

The Help button will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.

Thank you.

1 Like