Help with step 40 building the cafe menu

<p class="flavor">French vanilla </p>
<p class="price">3.00</p>

and after using the keyboard back space becomes this
<p class="flavor">French vanilla </p><p class="price">3.00</p> but yet didn’t pass the code

Here is how to post code in the forum

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 (').
Plese post your code…
and a link to a lesson…

2 Likes

For future reference, if you need help with a particular challenge, the best option is to click on the Help button, which appears after you have submitted incorrect code three times.
This will create a forum post which includes your full code, a direct link to the challenge and an opportunity for you to describe your issue in your own words.

I have edited your post so that your code displays correctly and have added a direct link to the challenge.

I think that the issue with your code is that you have a surplus space inside the ‘French Vanilla’ p element. Also, the word ‘Vanilla’ should have a capital letter. Fix that and remove the additional space and your code should pass.

1 Like

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