From 3ecdfe87d7a2139ee1929ecbc2d5eb07f4f771df Mon Sep 17 00:00:00 2001 From: majkelmichel <51023578+majkelmichel@users.noreply.github.com> Date: Sat, 16 Jan 2021 20:25:13 +0100 Subject: [PATCH] Update create-a-form-element.md (#40720) Improved wording in Description and Instructions sections --- .../basic-html-and-html5/create-a-form-element.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/curriculum/challenges/english/01-responsive-web-design/basic-html-and-html5/create-a-form-element.md b/curriculum/challenges/english/01-responsive-web-design/basic-html-and-html5/create-a-form-element.md index a951cf18df..4b11aa5027 100644 --- a/curriculum/challenges/english/01-responsive-web-design/basic-html-and-html5/create-a-form-element.md +++ b/curriculum/challenges/english/01-responsive-web-design/basic-html-and-html5/create-a-form-element.md @@ -8,7 +8,7 @@ dashedName: create-a-form-element # --description-- -You can build web forms that actually submit data to a server using nothing more than pure HTML. You can do this by specifying an action on your `form` element. +You can build web forms that actually submit data to a server using nothing more than pure HTML. You can do this by specifying an `action` attribute on your `form` element. For example: @@ -20,7 +20,7 @@ For example: # --instructions-- -Nest the existing input element inside a `form` element and assign `"https://freecatphotoapp.com/submit-cat-photo"` to the `action` attribute of the `form` element. +Nest the existing `input` element inside a `form` element and assign `"https://freecatphotoapp.com/submit-cat-photo"` to the `action` attribute of the `form` element. # --hints--