Learn Basic CSS by Building a Cafe Menu - Step 32

Instructions say to add the class element flavor into the p element. I thought i did this correctly and am confused on where to put flavor

Your code so far

<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Cafe Menu</title>
    <link href="styles.css" rel="stylesheet"/>
  </head>
  <body>
    <div class="menu">
      <main>
        <h1>CAMPER CAFE</h1>
        <p>Est. 2020</p>
        <section>
          <h2>Coffee</h2>
          <article>
            <p>French Vanilla <class="flavor"></p>
            <p>3.00</p>
          </article>
          <article>
            <p>Caramel Macchiato</p>
            <p>3.75</p>
          </article>
          <article>
            <p>Pumpkin Spice</p>
            <p>3.50</p>
          </article>
          <article>
            <p>Hazelnut</p>
            <p>4.00</p>
          </article>
          <article>
            <p>Mocha</p>
            <p>4.50</p>
          </article>
        </section>
      </main>
    </div>
  </body>
</html>
/* file: styles.css */
body {
  background-image: url(https://cdn.freecodecamp.org/curriculum/css-cafe/beans.jpg);
}

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

.menu {
  width: 80%;
  background-color: burlywood;
  margin-left: auto;
  margin-right: auto;
}

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36

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

Link to the challenge:

this code that you wrote in an earlier step shows an example of how to add a class attribute to a div element. (In this case the class attribute’s value is menu)

Now you are being asked to add a class attribute to a paragraph element.
Therefore, find the paragraph element they are referring to then add the class to it.

image
You are adding it inside the p tag as its content. That’s not correct.
You need to add class as an attribute of the p tag and give it a value of flavor.

okay, I placed it inside the p element. I was confused and didn’t realize a p element could have classes inside it.

1 Like

you can trust the exercise instructions in almost all cases (unless there is a known bug of course).

Hi. I am stuck on the same thing and I have tried everything I can think of. Could you please explain a bit more.

Hi. I am stuck on the same thing. Could you tell me what you did? Thanks

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.