Learn Basic CSS by Building a Cafe Menu - Step 14

Tell us what’s happening:

already entered the styles in the file but not proceeding what should i do this one is complicated

Your code so far

<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8" />
    <title>Cafe Menu</title>
   <link rel="stylesheet" href="style.css"> 
  </head>
  <body>
    <main>
      <h1>CAMPER CAFE</h1>
      <p>Est. 2020</p>
      <section>
        <h2>Coffee</h2>
      </section>
    </main>
  </body>
</html>
/* file: styles.css */

/* User Editable Region */

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


/* User Editable Region */


Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36

Challenge Information:

Learn Basic CSS by Building a Cafe Menu - Step 14

Is this the correct name of your css file?

Your href is wrong. It should be styles.css not style.css. You should be aware of name and spelling of your reference or it will not find the referenced link

1 Like

Hey Buddy, Here you need to select these 3 selectors at one place.

h3, h4, p {
}

You Need to write them in the given form.

Hope You Understand.