HTML FORMS TAGS

FORMS TAGS
DESCRIPTION
EXAMPLES
<form> </form> Creates an area in which to build your form.
<form method= "post" action= "mailto:email"> Defines the email address you wish to send the contents of the form to. <form method= "post" action="mailto:chandadobriyal @rediffmail.com"> Sends the form data to the specified email address when submit button is clicked.
<input type= "text" name ="Name" size="30" Sets up a text input field called "name"which is 30 character wide
<form > <input type= "text" name ="Name" size="30" </form> Will look like this
<input type= "submit" value= "Submit"> Creates an input button...
<input type= "reset" value= "Reset"> Creates an reset button...
<input type= "checkbox" name= "jaguar" <b>Jaguar</b> Creates an checkbox ... Jaguar
<input type= "radio" name= "jaguar"checked <b>Jaguar</b> Creates an checkbox ... Jaguar
<select name ="Col' <option>RED</option> <option>BLUE</option> <option>PINK</option> </select> Creates a drop down menu
<select name ="Col' size= "2" <option>RED</option> <option>BLUE</option> <option>PINK</option> </select> Creates a list menu