Oops, try again. Did you remember to give at least one <div> a class of 'friend'?

<PLEASE USE THE FOLLOWING TEMPLATE TO HELP YOU CREATE A GREAT POST!>

<Below this line, add a link to the EXACT exercise that you are stuck at.>

<In what way does your code behave incorrectly? Include ALL error messages.>

```

Replace this line with your code.

<do not remove the three backticks above>

Please clarify your question (add a question, code and error message)

Did you remember to give at least one

a class of ‘friend’?

I have the same problem

Hey @ippo it looks like you’ve got a little confused between HTML and CSS (which is totally fine! :slight_smile: )

Classes are added to HTML Tags as such;

<h1 class="className">HELLO WORLD</h1>

Whereas what you’ve done is similar to CSS syntax;

.className {
font-family: "Times", "blah", "blah";
}

Try adding your Classes as I did in the first example and I’m sure you’re code will pass :smiley:

1 Like


I did have this problem =(

i don’t see the class attribute anywhere?

example:

<p class="className"

in your case, class is just missing altogether.

ahhh I got it, thank you :slight_smile: