<input> Tags: a text box for submitting user input data.
Input property:
1.checked: For elements such as Checkbox,radio, determine if selected, True/false
2.disabled: Disable INPUT element, cannot commit or enter
3.max/min: Specifies the maximum/small value of the input field
4.maxlength: Specifies the maximum length of characters in the input field
5.multiple: If you use this property, more than one value is allowed
6.name: Defines the name of the INPUT element
7.placeholder: Provides tips to help users fill in input fields
8.readonly: Specifies that the input field is read-only
9.required: Indicates that the value of the input field is required
10.size: Defines the width of the input field
11.step: The legal number interval for the specified input word
12.type: Specifies the type of INPUT element
button
CheckBox
File
Hidden
Image
Password
Radio
Reset
Submit
Text
13.value: Specifies the value of the INPUT element
14.width: Defines the width of the input field. (For type= "image")
15.SRC: Defines the URL of an image to be displayed as a submit button
<label> Tags: defining annotations for input elements
Demo
<label for= "Male" >Male</label>
<input type= "Radio" name= "Sex" id= "male"/>
Note: Label uses the For property to bind the ID element of input
HTML Series Tutorial--input label