get all kind of text input such as name, address etc., Password Similar as Text box. But, while entering data, the characters are appearing as coded symbols such as asterisk. Checkbox Check box is an element appearing like a small square box. When the user click on the square a tiny tick mark will appear inside the square.
This element is used to select multiple options. Radio Button Radio button is used to select any one of the multiple options from the list. This element looks like a small circle, when the user select an item, a tiny dot will appear within the circle. If the user selects another option, previously selected option will be deselected.
This means, user can select any one of the given option form a group. Reset It is a special command button used to clear all the entries made in the form. Submit It is also a special command button used to submit all the entries made in the form to the backend server. Button This is a standard graphical button on the form used to call functions on click.
Chapter Pages Name: This attribute of <input> tag is used to assign a name to the input controls. When the form is submitted, the data values are passed to the server along with the names of the controls. Value: This attribute is used to define default value to some controls. Size: This is used to set the width of the input text in terms of characters.
It is applicable only for textbox and password boxes. Maxlength: This attribute of <input> tag is used to set the length of the input character (number of characters to be inputted) to the textbox and password boxes. <html> <head> <title> Login Form </title> <body> <h3 align=center> TamilNadu State Council of Educational Research and Training, Chennai </h3> <Form Action = "mailto:abcd.xyz@com" method=post> <p> User Name: <Input type = text name=" " size = maxlength = > </p> <p> Password: <Input type = password name="pass" size = maxlength = > </p> <Input type