"Oops, try again. Make sure your </head> tag comes before your <body> tag!" error

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

<Below this line, add a link to the EXACT exercise that you are stuck at.>
4. Tell us about yourself

<Below this line, in what way does your code behave incorrectly? Include ALL error messages.>

“Oops, try again. Make sure your tag comes before your tag!”

``` About me

Claudia

I love the color yellow.

I have 3 sisters.

I am a graphic designer

</body>
<do not remove the three backticks above>

You have your body tags inside your head, you need to close the head then add your body tags.

So after </title> close your head using </head> then add

<body>
    <h1> Claudia</h1>
    <p>I love the color yellow.</p>
    <p>I have 3 sisters.</p>
    <p>I am a graphic designer</p>

</body>

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