Build Quincy's Job Tips Page - Step 10

Tell us what’s happening:

You should have a cite element inside the blockquote .Can not resolve the error!

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>

<!-- User Editable Region -->

        <p>
          <blockuote cite="https://www.freecodecamp.org/news/is-college-worth-it/"></blockquote>
          <p><cite>—Quincy Larson,How to Learn to Code and Get a Developer Job [Full Book]</cite></p>
        </p>

<!-- User Editable Region -->

      </section>
      <section>

      </section>
      <section>

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

Your browser information:

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

Challenge Information:

Build Quincy’s Job Tips Page - Step 10

Welcome to the forum @qwertg

You should not have blockquote element in the last paragraph element.

It looks like you nested a paragraph element around the existing paragraph element.

Please reset the step to restore the seed code and try again.

Happy coding