CSS Camper Cafe Step 52

Hi Guys

Please I need help with this task-
“Below the dessert you just added, add the rest of the desserts and prices using three more article elements, each with two nested p elements. Each element should have the correct dessert and price text, and all of them should have the correct classes.”

I have done all of the above, but keep getting the following message. Any idea where I am going wrong and helpful hints will be greatly appreciated.
You should have four .dessert elements.

Here is my code

 <article class="item">
            <p class="dessert">Donut</p><p class="price">1.50</p>
          </article>
          <article class="item">
            <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>

I’ve edited your code for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (').

please post a link to the challenge and post all your code, not just a snippet.

Many Thanks for your help. Point noted.

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