InterviewSolution
Saved Bookmarks
| 1. |
Give the tags to define the following:(i) Textbox(ii) RadioButton(iii) CheckBox(iv) Submit button |
|
Answer» (i) < input type = "text"> (ii) < input type = "radio"> (iii) < input type = "checkbox"> (iv) < input type = "button" value = "submit" > |
|