From 331cde292795d800122c5a80a8090ce71075940e Mon Sep 17 00:00:00 2001 From: Potato <34000272+SimplePotato@users.noreply.github.com> Date: Fri, 26 Oct 2018 02:45:25 +0200 Subject: [PATCH] Minor gremmar changes (#28827) --- .../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 b82ca3fde4..294c35afd8 100644 --- a/guide/english/html/attributes/input-type-attribute/index.md +++ b/guide/english/html/attributes/input-type-attribute/index.md @@ -42,7 +42,7 @@ Allow only numeric input. You can also specify the min and max value allowed. Th ``` ### radio -Only one option can be selected by the user. The group of radio buttons need to have the same name attribute. You can select automatically one option by using `checked` property (in 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 automatically one option by using `checked` property (in the example below the value Blue is selected). ```html
@@ -51,7 +51,7 @@ Only one option can be selected by the user. The group of radio buttons need to
``` ### checkbox -User can select zero or more options from the group of checkboxes. You can use `checked` property here too for one or more options. +A user can select zero or more options from the group of checkboxes. You can use `checked` property here too for one or more options. ```html
@@ -60,14 +60,14 @@ User can select zero or more options from the group of checkboxes. You can use `
``` ### button -The input is displayed as button, the text which should be displayed in the button is in value attribute. +The input is displayed as a button, the text which should be displayed in the button is in the value attribute. ```html
``` ### 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 do 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, the HTML do the validation and if it passes, the form is submitted. ```html
@@ -75,12 +75,12 @@ 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 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 values from the form are deleted. ```html
``` -There are more types elements. For more information visit [MSDN]("https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input") or [w3schools]("https://www.w3schools.com/Html/html_form_input_types.asp"). +There are more types of elements. For more information visit [MSDN]("https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input") or [w3schools]("https://www.w3schools.com/Html/html_form_input_types.asp").