Step 52 Learn Typography After your last .divider, create another p element with the text Trans Fat 0g. Italicize the word Trans by wrapping it in an i element

I cannot figure out for the life of me where the issue is. I have the code as follows:

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <title>Nutrition Label</title>
  <link href="https://fonts.googleapis.com/css?family=Open+Sans:400,700,800" rel="stylesheet">
  <link href="./styles.css" rel="stylesheet">
</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="bold right no-divider">% Daily Value *</p>    
      <div class="divider"></div>
      <p><span><span class="bold">Total Fat</span> 8g</span> <span class="bold">10%</span></p>
      <p class="indent 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</p></span></p>
    </div>   
  </div>
</body>
</html>

The current hurdle I’m facing is the following:

" You should create a new p element at the end of your .daily-value element."

Welcome to the forum @jguner

You have several issues with your code:

  1. the opening paragraph tag does not have a closing angular bracket
  2. the closing i has the forward slash in the wrong spot
  3. there is an extra paragraph closing tag

Happy coding