Below your .small-text element, create a new p element with the text Calories . Also below the .left-container element, create a new span element with the text 230 .
Your p element is incorrect. There should be no space after the word ‘Calories’ and the closing tag is invalid syntax.
‘below the .left-container element’ means after the closing tag of the element, not directly after its opening tag, otherwise you’re nesting the span element inside the .left-container element. Also, you have unnecessary spaces inside your span tag.
It looks like this <div class="divider"></div><p><span> <span class="bold">Total Fat</span> <span class="bold">10%</span><span>Total Fat 8g 10%</span></p>
Hello @Biff ,
After read your issue, I must tell you that comment posted by @igorgetmeabrain is good described and detailed.
I put you some tips that probably will make more clear and you can go ahead with the exercise.
1. The <p></p> element which includes “Calories” has spaces. Remove them because they are in the paragraph element <p></p> and also in the word “Calories”
2. Your <span> element should be out of the "left-container" class. As the ennounce describes in the exercise Also below the .left-container element, create a new span element with the text 230.
So your <span></span> element should be written immediately after the closing tag </div> in your "left-container" class.
This is how you are seeing right now in the console:
And this is how your code should looks like after make the changes that I comment you:
as I said, the code you need help with is not the code for this challenge. The only thing you should be asking for help on this topic is code with step 33 not anything else. As you can see you are still getting replies for this challenge, and you are asking about code that does not have to do with this challenge. This will confuse people.
Questions about code should only be about this challenge
I am closing this topic as it seems you are further ahead of this challenge. If you havent actually passed this challenge then let me know and I can re open it