Learn Basic CSS by Building a Cafe Menu - Step 6

Tell us what’s happening:

What is my mistake here? I have written the exact same thing in my h1 element

Your code so far

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

<!-- User Editable Region -->

    <main>
      <H1>CAMPER CAFE</H1>
    </main>

<!-- User Editable Region -->

  </body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.3 Safari/605.1.15

Challenge Information:

Learn Basic CSS by Building a Cafe Menu - Step 6

Capitalization matters

it should not be all uppercase here

As others have said, you capitalized some incorrect things. I just wanted to add that paying attention to that is important in programming. Coding is often very precise in capitalization, punctuation, etc. The wrong comma or wrong capitalization can break your entire code.