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>
