Build a Cat Blog Page - Step 3

Tell us what’s happening:

My head title element is not working right and I’m not sure where I have gone wrong. Its nestled under the meta but is still saying it is wrong. I checked the spelling. It is acting like it is spelled incorrectly but I even tried copy and paste with the title name so that the spelling would be identical.

Your code so far

<!DOCTYPE html>
<html lang="en">

<!-- User Editable Region -->

  <head>
    <meta charset="UTF-8"
      <title>Mr. Whiskers' Blog</title>
  </head>

<!-- User Editable Region -->

</html>

Your browser information:

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

Challenge Information:

Build a Cat Blog Page - Step 3
https://www.freecodecamp.org/learn/full-stack-developer/workshop-blog-page/step-3

look at the color of title, isn’t it colore like an attribute? check for issues immediately before

1 Like

It right under the meta where its supposed to be. I tried taking it out all together and started over with the same results.

are you checking immediately before? like this line here? does it have all the pieces that it needs to have?

3 Likes

I got the all clear on the charset. “Your title element should have the text Mr. Whiskers' Blog . You may need to check your spelling.” This is what I am getting as the issue.

I apologize, you are correct. I hadn’t closed out the meta line. Thank you for the help.

when you forget to close a tag like that, everything until the next > is considered part of it, so it had all the required parts but also more, while your title did not have an opening tag

2 Likes

I can’t believe I missed it. Thank you again. I have been looking at it for 30 minutes.

3 Likes