Help me out! Typography step 43

my code is

<p>
    <span class="bold">
    <span class="bold">Total Fat</span>
   
      <span class="bold">8g</span>
   </span>
    <span class="bold">10%</span>
  </p>

and the requirement is
After your last .divider element, create a p element and give it the text Total Fat 8g 10% . Wrap the text Total Fat in a span element with the class of bold . Wrap the text 10% in another span element with the class of bold . Finally, nest the Total Fat span element and the text 8g in an additional span element for alignment.

Hello. Can you please use the “Ask for help” button on the challenge page? It would make assisting you with your issue so much easier.

Welcome to the community @formicidae !

As stated, it is best to use the Help to post the full code and questions. This allows for a more direct and accurate response to problems.

I am not sure if this will help you, but I have made a breakdown that I share for this step.
Welcome to the community @formicidae !

As stated, it is best to use the Help to post the full code and questions. This allows for a more direct and accurate response to problems.

I am not sure if this will help you, but I have made a breakdown that I share for this step.

Here is my breakdown of the instructions for this step.

1. Create a new p  element below the last divider closing div.
2.Text to be entered within p element Total Fat 8g 10%
3. Wrap the text Total Fat within a span element. 
4. Give the span element a class of "bold"
5. Wrap the text 10% within a span element. 

6.  Give the span element a class of "bold"

7.Wrap the first span element wrapped around Total Fat in a span that extends to include 8g.
Note: Total span elements should be three.  Make sure there is a space before 8g.

Where is ask for help button?

I did as you said but it’s not solved yet

<div class="daily-value small-text">
      <p> </p>
      <p class="bold right">% Daily Value *</p>
      <div class="divider"></div>
      <span>
      <p><span class="bold">Total Fat</span>
      <p><span class="bold">
       8g
       
       </span>
       
        <p>10%</p>
        </p>
       
    </div>

Hello @formicidae !
This is what we begin this step with when we first start the step.

  <div class="daily-value small-text">
      <p class="bold right">% Daily Value *</p>
      <div class="divider"></div>     
    </div>

If we want to pass this step, we are only to add the p elements with the span elements, as stated in the instructions. We should not add, nor delete or change, anything not mentioned in the instruction.

Tip: Keep all the element on one line. Do not push enter to make the changes. This will prevent unnecessary spaces.

The instructions tell us to enter a new p element below the last divider
which is located above the last div.
All the following is to be entered within the p element statement. The <p>Text</p> should hold all spans.
Next we are asked to nest the text Total Fat 8g 10% between the opening and closing p element tags.
We are then asked to place a span with the class of bold around the Total Fat, and another span with bold around the 10%. Nothing should be moved, nor changed to add the span elements. Lastly, it asks us to place a final span, without the bold class, around the span before Total Fat and closing behind 8g.

I hope this is more clear for you.
Happy coding!