Learn Basic CSS by Building a Cafe Menu - Step 11

Tell us what’s happening:
Describe your issue in detail here.
I dont know how to make the changes everytime i place my style element it says i haven’t put my h1 inside

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8" />
    <title>Cafe Menu</title>
    <style> 
element {text allign: center;}
    </style> 
  </head>
  <body>
    <main>
      <h1>CAMPER CAFE</h1>
      <p>Est. 2020</p>
      <section>
        <h2>Coffee</h2>
      </section>
    </main>
  </body>
</html>

Your mobile information:

SM-A042F - Android 14 - Android SDK 34

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

Link to the challenge:

Hi there!

  1. Your element you need to style is h1, so put it here
  2. Check the spelling of text-align property
1 Like