HTML Archive
The <input> Element: The HTML<input> tag represents an input element that allows the user to input data. The <input> element is the most important form element. We must use input element inside the form as …
Creating a password box: A password box (also called password field) is similar to a text box except that the typed characters are displayed as bullets (on Windows) or asterisks (on Mac). To create a …
The Submit Button: <input type=”submit”> defines a button for submitting a form to a form-handler. The form-handler is typically a server page with a script for processing input data. The form-handler is specified in the …
Creating radio buttons: Radio button are used to create choice list We create radio buttons using input element in html. Input type ‘radio’ represents the radio button and can be used in HTML form. Note: …
Creating check boxes: A check box is either selected or not. Unlike radio buttons, check boxes can be deselected. A check box can be unselected if the user clicks inside the check box. On the …
Creating a selection list: A selection list comes in handy when you have many choices to display within a limited space. A selection list also is a convenient way to get fixed set of possible …
Text area: If you want the user to enter more than one line of text, you can define a text area instead of using just a regular text field. Attributes: If you wanted to adjust …
label Tag : The HTML <label> tag is used to add a label to a form control like text, textarea etc.