From a196848bd0852afe67dbe657a8437a0d9683f7bb Mon Sep 17 00:00:00 2001 From: Gautam Hegde <85569489+Gautam-Hegde@users.noreply.github.com> Date: Mon, 31 Jan 2022 09:30:22 +0530 Subject: [PATCH] Update step-028.md (#44971) --- .../learn-accessibility-by-building-a-quiz/step-028.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/step-028.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/step-028.md index d58f5461cf..a11e4b67c4 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/step-028.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/step-028.md @@ -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);