Build a Cat Blog Page - Step 13

Tell us what’s happening:

after submitting my section on posts it still tells me my section element should have ab id set to posts yet my id is set to post. what could be the issue?

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>
      <nav>
        <ul>
          <li><a href="#about">About</a></li>
          <li><a href="#posts">Posts</a></li>
          <li><a href="#contact">Contact</a></li>
        </ul>
      </nav>
    </header>
    <main>
      <section id="about">
        <h2>About</h2>
        <p>
          Hi there! I'm Jane Doe, a passionate writer who finds endless inspiration in the antics of my beloved cat, Mr. Whiskers.
        </p>
        <p>
          His playful nature and boundless energy keeps me on my toes. I love him so much.
        </p>
      </section>

<!-- User Editable Region -->

      <section id='posts'>
        <h2>Posts</h2>
        </section>

<!-- User Editable Region -->

    </main>
  </body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:137.0) Gecko/20100101 Firefox/137.0

Challenge Information:

Build a Cat Blog Page - Step 13

Hi and welcome to the forum!
Check your section element with the id of about, and see if it looks any different than what you’ve written.
Good luck!

maybe it meant all of the sections should be set to posts or the first one should be set to posts

the section on post is not correct as per say when i hit ctrl + enter thus it display being that way since. i cant figure out where the problem is

Maybe it’s not working because you’re using single quotes ' ' with your id attribute?
Have you checked that?

how can i add the double quotes?

On your keyboard, whatever the button for single quote is, hold shift and click that button.