| 1. |
Explain the <input> tag and type of control. |
|
Answer» 1. <Input type = “text”> creates a oneline Textbox. 2. <Input type = “radio”> creates a Radio button. 3. The Radio button allows one option selection against multiple choices. 4. <Input type = “checkbox’^ creates a Checkbox. 5. A checkbox allows more than one selection against multiple choices. 6. <Input type = “submit”> displays a button for Submitting the form data to a server. 7. The Password input type is used to create text contents in the form of ‘*’ asterisk or ‘•’ disc. 8. The Reset control clears the text content entered in the form. 9. <Input type = “Button.”> displays push button which activates on events. |
|