Learn Basic CSS by Building a Cafe Menu - Step 14

Your styles.css file should have the h1, h2, p type selector.

This is the issue I’m having, what can I do

Your code so far

/* file: index.Ext.html */
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8" />
    <title>Cafe Menu</title>
    <style>
      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>
/* file: styles.Ext.css */

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

Your mobile information:

iPhone - iOS15.8.3

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

Link to the challenge:

Hi,
Your code passes for me. Try to reset the step and add your code again. I’ve noticed this has happened to some other users, which makes me think if there’s some kind of bug.
Good luck!

I’m having the same thing happen, driving myself crazy trying to make it work :sweat_smile:

2 posts were split to a new topic: Learn Basic CSS by Building a Cafe Menu - Step 14