I am so lost here. What am I missing?

Step 66

Add a medium divider after your .daily-value element. Below that new divider, create a p element with the class attribute set to note.

Give the p element the following text:

Example Code

* The % Daily Value (DV) tells you how much a nutrient in a serving of food contributes to a daily diet. 2,000 calories a day is used for general nutrition advice.

Check Your Code (Ctrl + Enter)

Sorry, your code does not pass. You’re getting there.

  1. You should create a p element after your new div element.

ResetHelp

Navigated to Step 66

Here’s my code

    <div class="divider medium"</div>
    <p class="note">* The % Daily Value (DV) tells you how much a nutrient in a serving of food contributes to a daily diet. 2,000 calories a day is used for general nutrition advice.</p>

Hi there!

Add a link to the challenge step, and post your code here using three back ticks (```) on a separate line before and after your code.

Welcome to the forum @JennysCodeLife

The div opening tag is missing a closing angular bracket.

I edited your code for readability.

I edited your post so the code displays correctly in the forum.

Happy coding

1 Like

Can you post your full code and include a link to the challenge?

When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (').

Nutrition Label

Nutrition Facts

8 servings per container

Serving size 2/3 cup (55g)

Amount per serving

Calories

230

% Daily Value *

Total Fat 8g 10%

Saturated Fat 1g 5%

Trans Fat 0g

Cholesterol 0mg 0%

Sodium 160mg 7%

Total Carbohydrate 37g 13%

Dietary Fiber 4g

Total Sugars 12g

Includes 10g Added Sugars 20%

Protein 3g

Vitamin D 2mcg 10%

Calcium 260mg 20%

Iron 8mg 45%

Potassium 235mg 6%

<div class="divider medium"

* The % Daily Value (DV) tells you how much a nutrient in a serving of food contributes to a daily diet. 2,000 calories a day is used for general nutrition advice.

Except that last div tag has a closing tag

Your div element is missing the a closing tag, it looks like this

<div</div>

It should look like this (With the correct class selector)

<div> </div>
1 Like

The opening div tag (the one with the class attribure) doesn’t have an angular bracket at the end.

1 Like

Insure that, you have added your last divider after .daily-value p element.

1 Like

Lawd have Mercy, I should’ve seen that. Thank you so very much. I’ve been distracted by falling trees…Homosassa/Crystal River, Florida Have a great day!
Jeni

2 Likes