Learn Basic CSS by Building a Cafe Menu Step 71

So I am on step 71 of the above exercise and I have tried putting the


element in just about every element it’s telling me to put it in, including trying to put two different
elements inside of each one like it says when it tells me that my answer is wrong. has anyone figured this one out yet?

it keeps saying “you should add a second hr element” and I’ve tried putting in one and tried putting in two and it keeps saying it doesn’t work.

here is my code:

       <p class="dessert">Cherry Pie</p><p class="price">2.75</p>
      </article>
      <article class="item">
        <p class="dessert">Cheesecake</p><p class="price">3.00</p>
      </article>
      <article class="item">
        <p class="dessert">Cinnamon Roll</p><p class="price">2.50</p>
      </article>
    </section>
  </main>
  <hr>
  <hr>
  <footer>
    <p>
      <a href="https://www.freecodecamp.org" target="_blank">Visit our website</a>
    </p>
    <p>123 Free Code Camp Drive</p>
  </footer>

One hr element between main and footer should be enough.

Have you tried change your browser? Sometimes using Mozilla with any extension will cause a bug that prevent our code to pass.

Or if you have tried change your browser and still can’t pass please paste all your raw code

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