Learn Typography by Building a Nutrition Label - Step 24

Tell us what’s happening:

Describe your issue in detail here.
i was asked to wrap up my code in a label element and its working.

Your code so far

<!-- file: index.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>


<!-- User Editable Region -->

<body>
<header>
<div class="label">
<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>
</div>
</header>




<!-- User Editable Region -->

</body>
</html>
/* file: styles.css */
* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  font-family: 'Open Sans', sans-serif;
}

.label {
  border: 2px solid black;
  width: 270px;
  margin: 20px auto;
  padding: 0 7px;
}

h1 {
  text-align: center;
  margin: -4px 0;
  letter-spacing: 0.15px
}

p {
  margin: 0;
  display: flex;
  justify-content: space-between;
}

.divider {
  border-bottom: 1px solid #888989;
  margin: 2px 0;
}

.bold {
  font-weight: 800;
}

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36

Challenge Information:

Learn Typography by Building a Nutrition Label - Step 24

You appear to have created this post without editing the template. Please edit your post to Tell us what’s happening in your own words.
Learning to describe problems is hard, but it is an important part of learning how to code.
Also, the more you say, the more we can help!

your “header” element should wrap these code

Hope this help!

1 Like

what do you mean? is it supposed to be like

<header>
<h1 text</h1>
<div></div>
<p></p>
</header>

? because it keeps telling me that my header needs to be within my label element? like is it ? i’m so confused !

hello! @vnxssav i’m so sorry for the missunderstanding
so, for the step 24, you need to Wrap everything within the .label element in a new header element.

so that mean, you need to wrap

<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>

that code in a header element, because that code is within the .label element.

addition, .label is <div class="label"></div>

thank you for replying. I just don’t think i’m understanding.
I have my code written as:

<header><div class="label">
    <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>

is this wrong? i’m not sure what else to do at this point. It says “Your header element should be within your .label element.
Your h1, div, and p elements should be within your new header element.”
i’m so stuck!

i figured it out! thank you

1 Like

Next time

If you have a question about a specific challenge as it relates to your written code for that challenge and need some help, click the Ask for Help button located on the challenge (it looks like a question mark). This button only appears if you have tried to submit an answer at least three times.

The Ask for Help button will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.

Thank you.