From abbbd175bd4d2065fd717e2dcc840eab69e9eae6 Mon Sep 17 00:00:00 2001 From: gram parallelo Date: Mon, 19 Dec 2016 21:34:02 -0500 Subject: [PATCH] Use HTML5 to Require a Field - grammar issue --- .../01-front-end-development-certification/html5-and-css.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenges/01-front-end-development-certification/html5-and-css.json b/challenges/01-front-end-development-certification/html5-and-css.json index 1d8a0623c0..ad7581cfe4 100644 --- a/challenges/01-front-end-development-certification/html5-and-css.json +++ b/challenges/01-front-end-development-certification/html5-and-css.json @@ -2565,7 +2565,7 @@ "title": "Use HTML5 to Require a Field", "description": [ "You can require specific form fields so that your user will not be able to submit your form until he or she has filled them out.", - "For example, if you wanted to make a text input field required, you can just add the word required within your input element, you would use: <input type=\"text\" required>", + "For example, if you wanted to make a text input field required, you can just add the word required within your input element, like this: <input type=\"text\" required>", "Make your text input a required field, so that your user can't submit the form without completing this field.", "Then try to submit the form without inputing any text. See how your HTML5 form notifies you that the field is required?", "Note: This field does not work in Safari."