The question say " Starting below the existing coffee/price pair, add the following coffee and prices using article
elements with two nested p
elements inside each. As before, the first p
element’s text should contain the coffee flavor and the second p
element’s text should contain the price"
I have responded with the code below:
<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.50</p> </article>
<article> <p>Mocha</p> <p>4.50</p> </article>
</article>
When checking the code, I’m receiving the below message.
Test
Sorry, your code does not pass. Keep trying.
Hint
Each article
element should have two p
elements.
The link to the challenge: Learn Basic CSS by Building a Cafe Menu: Step 32 | freeCodeCamp.org
Please advise.