I need help here pls!

Tell us what’s happening:
Describe your issue in detail here.
i have tried adding the new class element to the article but it’s not responding

  **Your code so far**
/* file: index.html */
<!DOCTYPE html>
<html>
<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" type="text/css" />
</head>
<body>
  <div class="menu">
    <header>
      <h1>CAMPER CAFE</h1>
      <p>Est. 2020</p>
    </header>
    <main>
      <section>
        <h2>Coffee</h2>
        <article>
          <p class="flavor">French Vanilla</p>
          <p class="item"></p>
          <p class="price">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;
}

.flavor {
text-align: left;
}

.price {
text-align: right;
}

Challenge: Step 37

Link to the challenge:

You need to add the class item to the first article element under the Coffee heading, but what you did is creating a new p tag and you add the class item to it.

<article>
  <p class="flavor">French Vanilla</p>
  <p class="item"></p>
  <p class="price">3.00</p>
</article>

You add the class to the wrong tag, delete the empty p in the middle and add the class to the article tag

pls I still don’t understand ; i have tried adding it but still not working

You need to add the class ‘item’ to the ‘article’ tag. There is no need to add a new ‘p’ tag as you did

thanks, I’m good to go

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