HTML5 FORMS CHAPTER 25
25 TH TUTORIAL ON HTML FORMS HTML Forms An HTML form is used to collect user input. The user input can then be sent to a server for processing. The <form> Element The HTML <form> element defines a form that is used to collect user input: < form > . form elements . < /form > An HTML form contains form elements . Form elements are different types of input elements, like: text fields, checkboxes, radio buttons, submit buttons, and more The <input> Element The <input> element is the most important form element. The <input> element is displayed in several ways, depending on the type attribute. Here are some examples: Type Description <input type="text"> Defines a single-line text input field <input type="radio"> Defines a radio button (for selecting one of many choices) ...
Comments
Post a Comment