You should nest two div elements within the second section element

The challenge is,
Within the second section element, add two div elements with a class of question-block.

Then, within each div.question-block element, add one h3 element with text of incrementing numbers, starting at 1, and one fieldset element with a class of question.

The problem raised as,
You should nest two div elements within the second section element.

The code is,

        <section role="region" aria-labelledby="html-questions">
          <h2 id="html-questions">HTML</h2>
        </section>
      <section>
          <div class="question-block">
              <h3>1</h3>
              <fieldset class="question">qustion1</fieldset>
            </div>
          <div class="question-block">
            <h3>2</h3>
            <fieldset class="question">qustion2</fieldset>
          </div>
</section>

Hi and welcome to the community!
Can you share the link to this project?
It’s better to create topics using the Help button (provided on the project page). That way, we can see your full code and the have the link to the specific challenge.

1 Like

Hi. Can you please post a link of the challenge you are stuck on.

When asking for help, use the help button which will direct you to link the relevant step.

If you have a question about a specific challenge as it relates to your written code for that challenge and need some help, click the Help button located on the challenge. This button only appears if you have tried to submit an answer at least three times.

The Help button will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.

Thank you.

thanks you for replying the issue is solved now!