Step 33 of Cafe menu

I am having issues with Step 33 of the Cafe Menu. It says to add a class element to a specific p value but when I submit the code for that value it says I haven’t added it. Did I enter the code in wrong or am I missing something?

image
Sorry for the image, I tried copying and pasting the code from the site, but it came out looking weird:

<div class="flavor"

French Vanilla

        <p>3.00</p>

(thats not what i’m talking about though the image is, i’m not sure how to fix the copy/pasted text though)

You forgot to add a closing “>” to the end of the div tag. Also, you’re not supposed to place the p tag inside of a div. You’re actually supposed to give the p tag itself the flavor class.

By the way, to place code in your posts, enclose it in a set of triple backticks. For example, this code:

```
<p>Hello, World!</p>
```

displays like this:

<p>Hello, World!</p>
1 Like

Thanks Colin, your great at this! I really appreciate your help! :blush:

1 Like

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