Debug a Coding Journey Blog Page - Step 1

Tell us what’s happening:

I have done what the test is saying and changed the 3-h1’s to h2’s and it’s still failing?

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>

  <h2>Navigation</h2>
  <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>

<!-- User Editable Region -->

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

  <div>
    <h2>Accessibility Matters</h2>
    <p>Today I learned that not everyone uses the web the same way I do.</p>
    <h5>Screen Readers</h5>
    <p>These tools help visually impaired users browse websites.</p>
  </div>

  <div>
    <h2>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>

<!-- User Editable Region -->

  <div>
    <h3>Contact Me</h3>
  <p>Email me at camperbot@blog.io</p>
  </div>
</body>
</html>

Your browser information:

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

Challenge Information:

Debug a Coding Journey Blog Page - Step 1

you removed the id attributes, reset the step and try again, do not remove teh ids

Thank you that worked!