From e13d795cff1772c20b384d93e736c08a42c1bdf9 Mon Sep 17 00:00:00 2001 From: Haris Date: Sun, 10 Mar 2019 16:38:49 +0100 Subject: [PATCH] Update index.md input attribute (#30987) Fix several syntax and sentence errors. --- .../html/attributes/input-type-attribute/index.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/guide/english/html/attributes/input-type-attribute/index.md b/guide/english/html/attributes/input-type-attribute/index.md index 8462b9adfc..f45e864246 100644 --- a/guide/english/html/attributes/input-type-attribute/index.md +++ b/guide/english/html/attributes/input-type-attribute/index.md @@ -6,7 +6,7 @@ title: Input Type Attribute The input type attribute specifies the type of the input the user should put in your form. ### text -One line of a text. +One line of text. ```html
@@ -15,7 +15,7 @@ One line of a text. ``` ### password -One line of a text. Text is automatically displayed as a series of dots or asterisks (depends on the browser and OS). +One line of text. Text is automatically displayed as a series of dots or asterisks (depends on the browser and OS). ```html @@ -33,7 +33,7 @@ The HTML checks if the input matches the e-mail address format (something@someth ``` ### number -Allow only numeric input. You can also specify the min and max value allowed. The example below check that the input is number between 1 and 120. +Allow only numeric input. You can also specify the min and max value allowed. The example below checks that the input is number between 1 and 120. ```html @@ -60,7 +60,7 @@ Let the user choose one or more files from their device storage. Once chosen, th ``` ### radio -Only one option can be selected by the user. The group of radio buttons needs to have the same name attribute. You can select automatically one option by using `checked` property (in the example below the value Blue is selected). +Only one option can be selected by the user. The group of radio buttons needs to have the same name attribute. You can select one option automatically by using `checked` property (in the example below the value Blue is selected). ```html @@ -88,7 +88,7 @@ The input is displayed as a button, the text which should be displayed in the bu ``` ### submit -Displays the submit button. The text which should be displayed in the button is in value attribute. After clicking on the button, the HTML does the validation and if it passes, the form is submitted. +Displays the submit button. The text which should be displayed in the button is in the value attribute. After clicking on the button, HTML validation is performed and if it passes, the form is submitted. ```html @@ -97,7 +97,7 @@ Displays the submit button. The text which should be displayed in the button is ``` ### reset -Displays the reset button. The text which should be displayed in the button is in the value attribute. After clicking on the button, all values from the form are deleted. +Displays the reset button. The text which should be displayed in the button is in the value attribute. After clicking on the button, all entered values from the form are deleted. ```html