Build a Cat Blog Page - Step 9

Tell us what’s happening:

I keep getting this message
“Your first anchor element should have the text of About inside your first li element.”
I can not figure out what else to do, I’m following the instructions to the T but no luck I’ve even restarted it incase it was glitching to no avail :frowning: I know its case sensitive also but. I just need help 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>About<a href="#about"></a></li>
          <li>Posts<a href="#posts"></a></li>
          <li>Contact<a href="#contact"></a></li>
        </ul>
      </nav>

<!-- User Editable Region -->

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

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.4 Safari/605.1.15

Challenge Information:

Build a Cat Blog Page - Step 9

About

Hi @rebeccamariehollon

Your first anchor element should have the text of About inside your first li element.

Does the text on the browser look like a link?
Try clicking it to see what happens.

Happy coding

do you know how to see what is the text of an element?

it does on the posts, and contact but not on about. but the codes look identical but clicking the links didn’t do anything else either, I moved the text to the other side between the closing anchor tag and closing li tag but the link went away after that.

isn’t that the text that displays on the screen? between the opening and closing tag

And what is there between the opening and closing tags of your anchor elements?