Saved Bookmarks
| 1. |
Aji wants to create a form in HTML to do the following:(1) Input name using text box. (2) Two Radio Buttons to select Male or Female. (3) InputAddress. (4) Submit Button with caption ‘OK’ Write HTML program for the above. |
|
Answer» (1) <inputtype=’’text> (2) <inputtype=”radio” name=”sex” value=”male”><inputtype=”radio” name-’sex” value=”female"> (3) <input type=”textarea> (4) <inputtype=”Submit” value=”ok”> |
|