Learn Basic CSS by Building a Cafe Menu - Step 34

Sorry, someone helped me told me, “ Just need to move the class attribute from the French Vanialla paragraph element to the paragraph element with the price.” I got so much more lost I butchered the code in a way I don’t know.

Your code so far

/* file: index.Ext.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 class="flavor">French Vanilla</p>
            <p>3.00</p>
            <p><price>3.00</p>
            <p ="price">French Vanilla</p>
            <paragraph class>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.Ext.css */
<!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 class="flavor">French Vanilla</p>
            <p>3.00</p>
            <p><price>3.00</p>
            <p ="price">French Vanilla</p>
            <paragraph class>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>

Your mobile information:

iPhone - iOS17.2.1

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

Link to the challenge:

When you feel like you have butchered the code then probably the best thing you can do is reset the step to start over. So I’d do that.

“Add a class named price to your p element that has 3.00 as its text.”

This is asking you to do just one thing. Add the price class to that p element. You have already added a class to an element in a previous step. You added the flavor class to the “French Vanilla” p element. Do you see that? You would use the exact same method to add the price class to the “3.00” p element.

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