Debug a Coding Journey Blog Page - Step 4

Tell us what’s happening:

Debug a coding Journey Blog Page - Step 4
I already wrap Navigation with nav element, but still saying that I must wrap

Navigation

with nav, I did Navigation, but does not let me procide. Help!

Your code so far

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Camperbot's Blog</title>
</head>
<body>
  <h1>Welcome to Camperbot's Blog</h1>

<!-- User Editable Region -->

  <nav>
    Navigation
    <ul>
      <li><a href="#post1">My Journey</a></li>
     <li><a href="#post2">Accessibility</a></li>
     <li><a href="#post3">Next Steps</a></li>
    </ul>
  </nav>

<!-- User Editable Region -->

  <div>
    <h2 id="post1">My Journey Learning to Code</h2>
    <p>I started learning to code a few months ago and it's been a wild ride!</p>
    
    <h3>Early Challenges</h3>
    <p>At first, syntax was really confusing.</p>
    
    <h3>Breakthroughs</h3>
    <p>Eventually things started to click.</p>
  </div>

  <div>
    <h2 id="post2">Accessibility Matters</h2>
    <p>Today I learned that not everyone uses the web the same way I do.</p>

    <h3>Screen Readers</h3>
    <p>These tools help visually impaired users browse websites.</p>
  </div>

  <div>
    <h2 id="post3">What's Next?</h2>
    <p>I'm excited to dive into JavaScript and build interactive features!</p>

    <h3>Coming soon: My first JavaScript project!</h3>
    <p>Stay tuned for some exciting interactive blog features.</p>
  </div>
  <h3>Contact Me</h3>
  <p>Email me at camperbot@blog.io</p>
</body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36

Challenge Information:

Debug a Coding Journey Blog Page - Step 4

Hi

You have deleted some of the seed code. Reset the step and only add the nav element.

Hi, I deleted the post beacuse I find out the issue, I was replacing the tags

for , but i needed to warp the entire element without replacing the h2 tags.