This file is a example of all the basic GUI element of HTML form. View Source to see the source code.
A form is done by the tag FORM. The GUI elements includes text field (plain, textarea, masked/password), check boxes, radio boxes, menu, button. The HTML tags to generate these are: INPUT and TEXTAREA and SELECT, together with various tag attributes. From the program input point of view, the inputs user generates by submitting a form are just a list of name/value pairs. In the case of GUI element such as check boxes that returns multiple results, the value is a list.
For client-side form validation using JavaScript, see: js_form_validation.html
References:
Page created: 2005-05. © 2005 by Xah Lee.