Build a Cat Blog Page - Step 9

Tell us what’s happening:

The lesson keeps telling me to put the word “Posts” in my

  • and I can’t figure out why it does not like the word “Posts”. Advice please

    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/137.0.0.0 Safari/537.36

    Challenge Information:

    Build a Cat Blog Page - Step 9

  • hi and welcome to the forum!

    It looks like you’ve fogotten to close your anchor opening tags
    Example of a proper anchor element is below for reference:

    <a href="www.freecodecamp.org">fCC</a>
    

    Hi there!

    Even though it looks like you’ve coded it correctly in the preview, that’s just because HTML is very forgiving. :slight_smile:

    An anchor (a) element should wrap around the text you want to turn into a link.

    So, your closing tag, , should go after the text, then don’t forget to close your opening tag with an angle bracket (>).

    Happy coding!