I can’t seem to figure out what I am doing wrong. Here are the instructions (note it says “Passed” but it wont let me continue):
Step 33 Passed
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
.
My starting code:
<div class="calories-info">
<div class="left-container">
<h2 class="bold small-text">Amount per serving</h2>
</div>
</div>
Code I entered:
<div class="calories-info">
<div class="left-container">
<span>230</span>
<h2 class="bold small-text">Amount per serving</h2>
<p>Calories</p>
</div>
</div>
Any ideas as to what I am doing wrong? Like I said, it says “Step 33” and has a checkmark next to it like I passed, but I still get the error :
"Sorry, your code does not pass. Keep trying.
Hint
Your span
element should have the text 230
."