Span paragraph issue

hi. doing the step 52. and now not liking the text inside the span. so what am i doing wrong? so how do i get that to fix?
tried about 10 times and still not working.
so pasting below.
marvin.

Your new p element should have the text Trans Fat 0g .

type or paste code here

https://www.freecodecamp.org/learn/full-stack-developer/workshop-nutritional-label/step-52

type or paste code here

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Nutrition Label</title>
  <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:400,700,800">
  <link rel="stylesheet" href="styles.css">
</head>
<body>
  <div class="label">
    <header>
      <h1 class="bold">Nutrition Facts</h1>
      <div class="divider"></div>
      <p>8 servings per container</p>
      <p class="bold">Serving size <span>2/3 cup (55g)</span></p>
    </header>
    <div class="divider large"></div>
    <div class="calories-info">
      <div class="left-container">
        <h2 class="bold small-text">Amount per serving</h2>
        <p>Calories</p>
      </div>
      <span>230</span>
    </div>
    <div class="divider medium"></div>
<div class="daily-value small-text">
  <p class="no-divider bold right">% Daily Value *</p>
  <div class="divider"></div>
  <p>
    <span class="bold">Total Fat</span> 8g <span class="bold">10%</span>
  </p>
  <p class="indent bold no-divider">Saturated Fat 1g <span class="bold">5%</span></p>
<div class="divider"></div>
<p class="indent no-divider"><span><i>Trans</i>Fat 0g</span></p>
</div>   
    </div>
  </div>
</body>
</html>

Hi @BlindVisionMan

You need to add a single space before the word Fat

Happy coding

hi. got it. thanks. sometimes need an extra pair of eyes to help me out. so it passed.
thanks.

1 Like