diff --git a/guide/english/html/attributes/input/index.md b/guide/english/html/attributes/input/index.md index 7e490c72df..d2339c2593 100644 --- a/guide/english/html/attributes/input/index.md +++ b/guide/english/html/attributes/input/index.md @@ -1,11 +1,11 @@ --- title: Input --- -## Input -The HTML `` tag is used within a form to declare an input element. -It allows the user to enter data. -## Example +## Input +The HTML `` tag is used to create an element which allows a user to input data. Typically this would be within a `
` element, although it's not required. + +### Example ```html @@ -15,28 +15,28 @@ It allows the user to enter data. - - First name: - + + +
- Last name: - - + + + +
``` -In the above example, there are two input fields which ask the user to enter their first and last names according to the labels specified. The submit `