From f229ac13f2076d89c15ae6389cd5b4bf1554bd2b Mon Sep 17 00:00:00 2001 From: Seweryn Date: Mon, 11 Jul 2022 21:46:13 +0200 Subject: [PATCH] Clarify 'Registration Form' project step 33 instructions (#46858) * fix: clarify form step 33 instructions * fix: simplify the form project instructions Co-authored-by: Jeremy L Thompson Co-authored-by: Jeremy L Thompson --- .../60facde2d0dc61085b41063f.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-html-forms-by-building-a-registration-form/60facde2d0dc61085b41063f.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-html-forms-by-building-a-registration-form/60facde2d0dc61085b41063f.md index 75717cd8718..afc75db49b2 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-html-forms-by-building-a-registration-form/60facde2d0dc61085b41063f.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-html-forms-by-building-a-registration-form/60facde2d0dc61085b41063f.md @@ -9,11 +9,11 @@ dashedName: step-33 The `textarea` element acts like an `input` element of type `text`, but comes with the added benefit of being able to receive multi-line text, and an initial number of text rows and columns. -To allow users to register with a bio, add a `label` with the text `Provide a bio:` followed by a `textarea` element, which requires a closing tag. +Users will be able to register with a bio. Add a `label` with the text `Provide a bio:` at the end of the `fieldset`. Add a `textarea` element after the `label` element. Note that the `textarea` requires a closing tag. # --hints-- -You should add a `label` element within the third `fieldset`, after the existing `label` elements. +You should add a `label` element at the end of the third `fieldset`, after the existing `label` elements. ```js assert.exists(document.querySelector('fieldset:nth-child(3) > label:nth-child(4)'));