Learn Basic CSS by Building a Cafe Menu - Step 11

Tell us what’s happening:

I don’t know what I’m supposed to do😅
(Btw English is not my first language)

Your code so far

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

<!-- User Editable Region -->

    <style>
    <h1>
    </style>

<!-- User Editable Region -->

  </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/605.1.15 (KHTML, like Gecko) Version/17.2.1 Safari/605.1.15

Challenge Information:

Learn Basic CSS by Building a Cafe Menu - Step 11

1 Like

Can you say a bit more about which part of the instructions or error message is confusing?

1 Like

the section about the style
Im not sure what I’m supposed to do, if someone could send an example I would really be happy :sweat_smile:

element {
 property: value;
}

This is the example you want to look at. So you put the name of the element you want to style where element is written and the property and value in the corresponding spots.

So,

p {
  color: red;
}

This modifies the p element to change the color property to red.

3 Likes

thank you soooooo much 🫶🏼

1 Like

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.