Build a Cat Blog Page - Step 5

Tell us what’s happening:

Step 5. It is telling me this is wrong but I don’t see what is wrong.

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 in the garden"
        />
        <figcaption>Mr. Whiskers in the Garden</figcaption>
      </figure>
      <nav>
        <ul>

<!-- User Editable Region -->

          <li><a href="#about">About</li>
          <li><a href="#posts">Posts</li>
          <li><a href="#contact">Contact</li>

<!-- User Editable Region -->

        </ul>
      </nav>
    </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/149.0.0.0 Safari/537.36

Challenge Information:

Build a Cat Blog Page - Step 5

GitHub Link: freeCodeCamp/curriculum/challenges/english/blocks/workshop-blog-page/669fdc11c9b0263fe0814a7a.md at main · freeCodeCamp/freeCodeCamp · GitHub

Hi @shaunify,

Remember that most HTML elements have to have a start tag and an end tag to be complete.

Is your anchor element complete?

Happy coding

It appears to be. In reference to the line above it, the code appears to be the same. It does not give me an error for the about line, just the posts line.

Your anchor elements are not complete.

I see now. :man_facepalming: Thank you.