From fc976aba74446414d99ad8541e0389fbbbaf23b1 Mon Sep 17 00:00:00 2001 From: Thomas Date: Sat, 16 Jan 2021 04:11:47 -0500 Subject: [PATCH] fix(learn): Change example text in create-a-form-element.md (#40542) * Update create-a-form-element.md Update example. For issue 40523 * Clearer formatting of example --- .../basic-html-and-html5/create-a-form-element.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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 3a81dd54e8..a951cf18df 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 @@ -12,7 +12,11 @@ You can build web forms that actually submit data to a server using nothing more For example: -`
` +```html +
+ +
+``` # --instructions--