Design a Cafe Menu - Step 9

Tell us what’s happening:

i dont know why it says “You should use a single type selector for all three elements, h1, h2, p. Be sure to use that order.”

Your code so far

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

<!-- User Editable Region -->

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

<!-- User Editable Region -->

    </style>
  </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 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36

Challenge Information:

Design a Cafe Menu - Step 9

Hi @joshuachux1,

Please refer to the example in the instructions again for the syntax to create a single selector that targets multiple types.

Happy coding!