Step 53 of Building a Cafe Menu

I think the following code is correct:

 <article class="item">
            <p class="dessert">Donut</p><p class="price">1.50</p>
            <p class="dessert">Cherry Pie</p><p class="price">2.75</p>
            <p class="dessert">Cheesecake</p><p class="price">3.00</p>
            <p class="dessert">Cinnamon Roll</p><p class="price">2.50</p>
          </article>

However, this is the response I get:

Test

Sorry, your code does not pass. You’re getting there.

Hint

You should not have any spaces between your p elements.

Thanks in advance for the help!

The instructions tell you to add the rest of the desserts using three more article elements. I only see a single article element containing all the p elements.

Thank you - That fixed it!

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