Contact Us || Privacy Policy || About Us |
|
HTML Forms⟼ HTML Forms are collect different kinds of user input details like name, email address, phone numbers, or details like credit card information, and Other Details etc. ⟼ User input Date most often sent to the server processing. The <form> tag is used to create a HTML form. Uses for Form Tags .Let's see the list of tags below.
|
It is used to create text fields, to take input Data from user.
An <input> tag can be display in many ways, depending on the type attribute below in list.
Type | Description |
---|---|
<input type="text"> | It is Displays a single-line text input field |
<input type="radio"> | It is Displays a radio button . |
<input type="checkbox"> | It is Displays a checkbox . |
<input type="submit"> | It is Displays a Form submit button |
<input type="button"> | It is Displays a Create clickable button |
Output:-
<textarea> Tag is used to insert multiple-line text in a form.The <textarea> size depend on either using "rows" or "cols" attribute..
Where rows attribute specifies the visible number of lines in a text area.
Where cols attribute specifies the visible width of a text area.
Output:-
HTML <label> tag is used to adding a label to a user interface form control.
Output:-
Output:-
HTML <fieldset> tag is used for grouping related information of a form.
The <fieldset> tag draws a box around the related information of a form.
Output:-