Update step-028.md (#44971)

This commit is contained in:
Gautam Hegde
2022-01-31 09:30:22 +05:30
committed by GitHub
parent 239f954a86
commit a196848bd0

View File

@ -7,13 +7,13 @@ dashedName: step-28
# --description--
Give each `fieldset` an adaquate `name` attribute. Then, give both unordered lists a `class` of `answers-list`.
Give each `fieldset` an adequate `name` attribute. Then, give both unordered lists a `class` of `answers-list`.
Finally, use the `legend` to caption the content of the `fieldset` by placing a true/false question as the text content.
# --hints--
You should give the first `fieldset` an adaquate `name` attribute. _Hint: I would use `html-question-one`_
You should give the first `fieldset` an adequate `name` attribute. _Hint: I would use `html-question-one`_
```js
assert.notEmpty(document.querySelectorAll('fieldset')?.[0]?.name);