Step 26
Within the second section
element, add two div
elements with a class of question-block
.
Then, within each div.question-block
element, add one p
element with text of incrementing numbers, starting at 1
, and one fieldset
element with a class of question
.
Keep getting this hint: Hint
You should give the first p
element text of 1
.
What am i missing?
My code:
<section role="region" aria-labelledby="html-questions">
<h2 id="html-questions">HTML</h2>
<div class="question-block">
<p > 1</p>
<fieldset class="question">
</fieldset>
</div>
<div class="question-block">
<p> 2 </p>
<fieldset class="question">
</fieldset>
</div>
</section>```