Learn Basic CSS by Building a Cafe Menu - Step 11

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

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; 
    } </h1>
    </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/114.0.0.0 Safari/537.36

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

Link to the challenge:

We

Please Tell us what’s happening in your own words.

Learning to describe problems is hard, but it is an important part of learning how to code.

Also, the more you say, the more we can help!

lcome to our community!

1 Like

Hi, though I don’t know your question; I don’t think I have ever seen a “<>” sign in CSS. I think you are meant to use “.h1” not <h1>.
Also please next time describe your issue, it will make it easier for you to get help.

This is not entirely correct. Yes, you don’t use <> in css. However using .h1 the dot in-front is only used for classes. This situation is not styling a class, and only the element should be used in the selector

:open_mouth: so that means it is supposed to be just h1. Thanks for the correction.