Build a Cat Blog Page - Step 9

Tell us what’s happening:

step 9 youranchor element should have text of inside the second

  • 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">Posts</a></li>
              <li><a href="#contact">Contact</a></li>
            </ul>
          </nav>
    
    <!-- User Editable Region -->
    
        </header>
      </body>
    </html>
    

    Your browser information:

    User Agent is: Mozilla/5.0 (Android 10; Mobile; rv:137.0) Gecko/137.0 Firefox/137.0

    Challenge Information:

    Build a Cat Blog Page - Step 9

    • syntax error, “a” element is missing its closing bracket for its opening tag
    • “About” needs to be in within “a” element just like those rest

    happy coding :slight_smile:

    still not yet .what i have done is like this<li><a href="#about"</a>About</li>
    for the second one,which is [posts]<li><a href="#posts"</a>Post</li>,third one <li><a href="#contact">contact</a></li>,still not have issue with [posts]

    the only one correct there is the one for contact, you are missing the > in the opening one in the first and second case, please fix that, then put the text before the closing tag of the anchor element