Build a Cat Blog Page - Step 9

Tell us what’s happening:

Please What is wrong with my second anchor 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"/>About</li>
          <li><a href="#posts"/>Posts</li>
          <li><a href="#contact"/>Contacts</li>
        </ul>
      </nav>

<!-- User Editable Region -->

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

Your browser information:

User Agent is: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36

Challenge Information:

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

you have written the a elements like this, but are you sure they are void elements?

1 Like

Your second anchor element should have the text of Posts inside your second li element.

This is the correction it’s giving me

You are using the anchor tags wrong way !