diff --git a/curriculum/challenges/english/25-front-end-development/workshop-registration-form/60f1a9cbd23023082e149fee.md b/curriculum/challenges/english/25-front-end-development/workshop-registration-form/60f1a9cbd23023082e149fee.md index 869eeeb1363..9ca1f98fd65 100644 --- a/curriculum/challenges/english/25-front-end-development/workshop-registration-form/60f1a9cbd23023082e149fee.md +++ b/curriculum/challenges/english/25-front-end-development/workshop-registration-form/60f1a9cbd23023082e149fee.md @@ -7,7 +7,7 @@ dashedName: step-5 # --description-- -That is better. Now, make the background easy on the eyes, by changing the `body` `background-color` to `#1b1b32`. Then, to see the text, change the `color` to `#f5f6f7`. +That is better. Now, make the background easy on the eyes, by changing the `background-color` of `body` to `#1b1b32`. Then, to see the text, change the `color` to `#f5f6f7`. # --hints-- diff --git a/curriculum/challenges/english/25-front-end-development/workshop-registration-form/60f81616cff80508badf9ad5.md b/curriculum/challenges/english/25-front-end-development/workshop-registration-form/60f81616cff80508badf9ad5.md index 192659b5e6b..c045748dd61 100644 --- a/curriculum/challenges/english/25-front-end-development/workshop-registration-form/60f81616cff80508badf9ad5.md +++ b/curriculum/challenges/english/25-front-end-development/workshop-registration-form/60f81616cff80508badf9ad5.md @@ -39,7 +39,7 @@ You should give the fourth `input` element a `required` attribute. assert.isTrue(document.querySelectorAll('input')?.[3]?.required); ``` -You should not give the `submit` `input` a `required` attribute. +You should not give the `input` with type `submit` a `required` attribute. ```js assert.isFalse(document.querySelector('input[type="submit"]')?.required);