From da70302b39294f4247695dfd5424200fe816d180 Mon Sep 17 00:00:00 2001 From: Danielle Featherstone <99286933+4ell0@users.noreply.github.com> Date: Tue, 3 Jan 2023 02:22:31 -0500 Subject: [PATCH] fix(curriculum): specify the input file should be nested (#48887) Update Step 31 to specify nesting --- .../60fab9f17fa294054b74228c.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-html-forms-by-building-a-registration-form/60fab9f17fa294054b74228c.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-html-forms-by-building-a-registration-form/60fab9f17fa294054b74228c.md index 2c88af69921..d54e9ed7616 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-html-forms-by-building-a-registration-form/60fab9f17fa294054b74228c.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-html-forms-by-building-a-registration-form/60fab9f17fa294054b74228c.md @@ -9,7 +9,7 @@ dashedName: step-31 Moving on to the final `fieldset`. What if you wanted to allow a user to upload a profile picture? -Well, the `input` type `file` allows just that. Add a `label` with the text `Upload a profile picture: `, and add an `input` accepting a file upload. +Well, the `input` type `file` allows just that. Add a `label` with the text `Upload a profile picture: `, and nest an `input` accepting a file upload. # --hints--