Learn Basic CSS by Building a Cafe Menu - Step 31

Been stuck for awhile. I added another p element around the that didn’t work but taking it out it’s saying the same thing again. I’m lost.

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>
            <p><article></p>
            <p>French Vanilla</p>
            <p></article></p>
            <p>3.00</p>
            <p><article></p>
            <p>Caramel Macchiato</p>
            <p></article></p>
            <p>3.75</p>
            <p><article></p>
            <p>Pumpkin Spice</p>
            <p></article></p>
            <p>3.50</p>
            <p><article></p>
            <p>Hazelnut</p>
            <p></article></p>
            <p>4.00</p>
            <p><article></p>
            <p>Mocha</p>
            <p></article></p>
            <p>4.50</p> 
        </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>
            <p><article></p>
            <p>French Vanilla</p>
            <p></article></p>
            <p>3.00</p>
            <p><article></p>
            <p>Caramel Macchiato</p>
            <p></article></p>
            <p>3.75</p>
            <p><article></p>
            <p>Pumpkin Spice</p>
            <p></article></p>
            <p>3.50</p>
            <p><article></p>
            <p>Hazelnut</p>
            <p></article></p>
            <p>4.00</p>
            <p><article></p>
            <p>Mocha</p>
            <p></article></p>
            <p>4.50</p> 
        </section> 
      </main>
    </div>
  </body>
</html>

Your mobile information:

iPhone - iOS17.1.1

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

Link to the challenge:

The following is what you have to do for all given flavors and prices:

            <article>
              <p>French Vanilla</p>
              <p>3.00</p>
            </article>

Restart step.

Read the instructions again.

1 Like

Truly thank you so much.

1 Like

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