From cdb8d72db800633652794d4f39e06e06a0978bec Mon Sep 17 00:00:00 2001 From: EmeraldEntities <44278515+EmeraldEntities@users.noreply.github.com> Date: Sun, 4 Nov 2018 01:12:47 -0400 Subject: [PATCH] Changed the text and example names (#20918) * Update index.md * Remove w3 link --- guide/english/html/attributes/required/index.md | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/guide/english/html/attributes/required/index.md b/guide/english/html/attributes/required/index.md index 32e10a4d74..3a5169a7df 100644 --- a/guide/english/html/attributes/required/index.md +++ b/guide/english/html/attributes/required/index.md @@ -4,11 +4,11 @@ title: Required ## Required -The HTML required attribute is used in an input element to make the input field in a form required to submit the form. -If the user does not fill in the input field the form will not submit and it will give a message asking the user to fill out the field. -The `required` attribute is applicable to ``, ` @@ -44,8 +44,6 @@ Text Area Example: ``` -Simply add `required` to an input element - #### More Information: MDN article on the input element