**Tell us what’s happening
Your code so far
/* file: index.Ext.html */
<!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">% Daily Value *</p>
<div class="divider">
<p><span class="bold">Total Fat</span> <span>8g</span> <span class="bold">10%</span></p>
</div>
<p><span>Total Fat</span><span>8g</span><span>10%</span></p>
</div>
</body>
</html>
**Challenge:** Learn Typography by Building a Nutrition Label - Step 43
**Link to the challenge:**
https://www.freecodecamp.org/learn/2022/responsive-web-design/learn-typography-by-building-a-nutrition-label/step-43