Build a Cat Blog Page - Step 9

Tell us what’s happening:

i’ve done all as instructed yet but still they’re still telling me that"Your second anchor element should have the text of Posts inside your second li element."

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
    <title>Mr. Whiskers' Blog</title>
    <meta charset="UTF-8" />
  </head>
  <body>
    <header>
      <h1>Welcome to Mr. Whiskers' Blog Page!</h1>
      <figure>
        <img
          src="https://cdn.freecodecamp.org/curriculum/css-photo-gallery/1.jpg"
          alt="a cat peacefully sleeping"
        />
        <figcaption>Mr. Whiskers Sleeping</figcaption>
      </figure>

<!-- User Editable Region -->

      <nav>
        <ul>
          <li><a href="#about"</a>About</li>
          <li><a href="#posts"</a>posts</li>
          <li><a href="#Contact"</a>Contact</li>
        </ul>
      </nav>

<!-- User Editable Region -->

    </header>
  </body>
</html>

Your browser information:

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

Challenge Information:

Build a Cat Blog Page - Step 9

Hi,
The text should be capitalized like the others. Also, your opening anchor tags are missing a >. When you add that, make sure the texts are added between the opening and closing anchor tags.
Good luck!

welcome to the fcc forum @rukundothierry17
umm your anchor tags are missing it closing tag like /a

Add the text.
About
Do the same for the other a elements

hi @joanitaansiimire

It is great that you solved the challenge, but instead of posting your full working solution, it is best to stay focused on answering the original poster’s question(s) and help guide them with hints and suggestions to solve their own issues with the challenge. How to Help Someone with Their Code Using the Socratic Method

We are trying to cut back on the number of spoiler solutions found on the forum and instead focus on helping other campers with their questions and definitely not posting full working solutions.