Learn Basic CSS by Building a Cafe Menu - Step 13

heloo

help please

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8" />
    <title>Cafe Menu</title>
    <style>
      selector { h1,h2,p text-align: center;}
      
    </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 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36

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

Link to the challenge:

the word “selector” needs to be replaced with the h1,h2,p that you have placed on the right of the {

1 Like

omg, thanks a lot.
that was a stupied question :smiley:

i am glad I could help.

1 Like

i believe i did that but for me it says " should not change the existing h1 selector"

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

If you have a question about a specific challenge as it relates to your written code for that challenge, just click the Ask for Help button located on the challenge. It 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.