Go Back   Wiki NewForum | Latest Entertainment News > Career Forum & Tips > Tech Forum & Tutorial > HTML Forum & Tutorial


HTML Forms and Input


Reply
Views: 4745  
Thread Tools Rate Thread
  #1  
Old 05-03-2009, 02:33 PM
welcomewiki welcomewiki is offline
Member
 
Join Date: Dec 2008
Location: India
Posts: 80,566
Default HTML Forms and Input

HTML Forms are used to select different kinds of user input.
Try-It-Yourself Examples

Text fields

This example demonstrates how to create text fields on an HTML page. A user can write text in a text field.


Password fields
This example demonstrates how to create a password field on an HTML page.


(You can find more examples at the bottom of this page)
Forms

A form is an area that can contain form elements.
Form elements are elements that allow the user to enter information (like text fields, textarea fields, drop-down menus, radio ****ons, checkboxes, etc.) in a form.
A form is defined with the
tag.

.
input elements
.


Input

The most used form tag is the tag. The type of input is specified with the type attribute. The most commonly used input types are explained below.
Text Fields

Text fields are used when you want the user to type letters, numbers, etc. in a form.

First name:



Last name:



How it looks in a browser:
First name:
Last name: Note that the form itself is not visible. Also note that in most browsers, the width of the text field is 20 characters by default.
Radio ****ons

Radio ****ons are used when you want the user to select one of a limited number of choices.

Male


Female


How it looks in a browser:
Male
Female Note that only one option can be chosen.
Checkboxes

Checkboxes are used when you want the user to select one or more options of a limited number of choices.



I have a bike:



I have a car:



I have an airplane:



How it looks in a browser:
I have a bike:
I have a car:
I have an airplane: The Form's Action Attribute and the Submit ****on

When the user clicks on the "Submit" ****on, the content of the form is sent to the server. The form's action attribute defines the name of the file to send the content to. The file defined in the action attribute usually does something with the received input.



Username:




How it looks in a browser:


Username: If you type some characters in the text field above, and click the "Submit" ****on, the browser will send your input to a page called "html_form_submit.asp". The page will show you the received input.

Reply With Quote
  #2  
Old 05-03-2009, 02:33 PM
welcomewiki welcomewiki is offline
Member
 
Join Date: Dec 2008
Location: India
Posts: 80,566
Checkboxes
This example demonstrates how to create check-boxes on an HTML page. A user can select or unselect a checkbox.






I have a bike:



I have a car:



I have an airplane:




Reply With Quote
  #3  
Old 05-03-2009, 02:34 PM
welcomewiki welcomewiki is offline
Member
 
Join Date: Dec 2008
Location: India
Posts: 80,566
Radio ****ons
This example demonstrates how to create radio-****ons on an HTML page






Male:
name="***" value="male">


Female:
name="***" value="female">



When a user clicks on a radio-****on, the ****on becomes checked, and all other ****ons with the same name become unchecked




Reply With Quote
  #4  
Old 05-03-2009, 02:34 PM
welcomewiki welcomewiki is offline
Member
 
Join Date: Dec 2008
Location: India
Posts: 80,566
Simple drop down box

This example demonstrates how to create a simple drop-down box on an HTML page. A drop-down box is a selectable list.









Reply With Quote
  #5  
Old 05-03-2009, 02:35 PM
welcomewiki welcomewiki is offline
Member
 
Join Date: Dec 2008
Location: India
Posts: 80,566
Another drop down box

This example demonstrates how to create a simple drop-down box with a pre-selected value









Reply With Quote
Reply

New topics in HTML Forum & Tutorial





Powered by vBulletin® Version 3.8.10
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
WikiNewForum)