Your new p element should have the text Sodium 160mg 7%

Not sure what’s going on here. This SHOULD be formatted exactly like the Cholesterol

below, but it’s not working. Toward the bottom of the code.

<!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</span></p>
      <div class="divider"></div>
      <p><span><span class="bold">Sodium</span> 160mg</span><span class="bold">7%</span></p>

      <p><span><span class="bold">Cholesterol</span> 0mg</span> <span class="bold">0%</span></p>
    </div>    

Always include a link to the step. Or at least tell us the step number :slightly_smiling_face:

The best way to ask a question is to use the Ask for Help button in the step itself.

Gotcha, updated with the step. Went through the ask for help button and it had me sign in, which took me to the forum home, so I just made a new topic :stuck_out_tongue:

The “Sodium” p element needs to be below (or after) the “Cholesterol” p element.

1 Like

Oh my goodness. Thank you

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.