Quincy's Job Tips Page step 11

Tell us what’s happening: It says, “You should have an h2 element nested inside the second section.” What am I doing wrong here, I’m virtually pulling hair trying to figure out what’s wrong.

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Quincy's Tips for Getting a Developer Job</title>
  </head>
  <body>
    <h1>Quincy's Tips for Getting a Developer Job</h1>
    <p>
      Learning to code is hard, but as Quincy Larson says,
      <q cite="https://www.freecodecamp.org/news/learn-to-code-book/">You can become a developer.</q>
    </p>

    <main>
      <section>
        <h2>Envisioning Success</h2>
        <blockquote cite="https://www.freecodecamp.org/news/learn-to-code-book/">
          Can you imagine what it would be like to be a successful developer? To have built software systems that people rely upon?
        </blockquote>
        <p>
          &mdash;Quincy Larson, <cite>How to Learn to Code and Get a Developer Job [Full Book]</cite>
        </p>
      </section>
<h2>Importance of Networking</h2>
  <p>
    <blockquote>
      <cite>https://www.freecodecamp.org/news/learn-to-code-book/</cite>
      </p> 
  </section>     
      <section>

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

Lesson URL (copy - paste from your browser’s address bar)

Welcome to the forum @Merwin,

I went ahead and combined your posts for you. In the future, just reply to the original thread to add further updates.

Happy coding

Hi @Merwin ,

I don’t see the requested h2 element in your code. In fact, there’s nothing in the second section element.

Can you be more specific about what is confusing you?

Edit: Okay, I see it now, but it’s not inside a section element, and it looks like you have a stray closing tag for that element. Here’s the starting code for that step. It looks like you removed the starting tag for the second section element, which will cause the tests to fail. Please reset this step and try again, being careful not to change the starting code.

Happy coding