SlideShare a Scribd company logo
Group :- 1
Presented by :- deepak
anurag sharma
bhanu
akansha sharma
champa meena
18-Oct-20
HTML Forms
2
What are forms?
◼ <form> is just another kind of HTML tag
◼ HTML forms are used to create (rather primitive) GUIs on Web
pages
◼ Usually the purpose is to ask the user for information
◼ The information is then sent back to the server
◼ A form is an area that can contain form elements
◼ The syntax is: <form parameters> ...form elements... </form>
◼ Form elements include: buttons, checkboxes, text fields, radio buttons,
drop-down menus, etc
◼ Other kinds of HTML tags can be mixed in with the form elements
◼ A form usually contains a Submit button to send the information in he
form elements to the server
◼ The form’s parameters tell JavaScript how to send the information to the
server (there are two different ways it could be sent)
◼ Forms can be used for other things, such as a GUI for simple programs
3
Forms and JavaScript
◼ The JavaScript language can be used to make pages that “do
something”
◼ You can use JavaScript to write complete programs, but...
◼ Usually you just use snippets of JavaScript here and there throughout your
Web page
◼ JavaScript code snippets can be attached to various form elements
◼ For example, you might want to check that a zipcode field contains a 5-digit
integer before you send that information to the server
◼ Microsoft sometimes calls JavaScript “active scripting”
◼ HTML forms can be used without JavaScript, and JavaScript can
be used without HTML forms, but they work well together
◼ JavaScript for HTML is covered in a separate lecture
4
The <form> tag
◼ The <form arguments> ... </form> tag encloses form
elements (and probably other HTML as well)
◼ The arguments to form tell what to do with the user input
◼ action="url" (required)
◼ Specifies where to send the data when the Submit button is clicked
◼ method="get" (default)
◼ Form data is sent as a URL with ?form_data info appended to the end
◼ Can be used only if data is all ASCII and not more than 100 characters
◼ method="post"
◼ Form data is sent in the body of the URL request
◼ Cannot be bookmarked by most browsers
◼ target="target"
◼ Tells where to open the page sent as a result of the request
◼ target= _blank means open in a new window
◼ target= _top means use the same window
5
The <input> tag
◼ Most, but not all, form elements use the input tag, with a
type="..." argument to tell which kind of element it is
◼ type can be text, checkbox, radio, password, hidden, submit, reset,
button, file, or image
◼ Other common input tag arguments include:
◼ name: the name of the element
◼ value: the “value” of the element; used in different ways for different
values of type
◼ readonly: the value cannot be changed
◼ disabled: the user can’t do anything with this element
◼ Other arguments are defined for the input tag but have meaning only for
certain values of type
6
Text input
A text field:
<input type="text" name="textfield" value="with an initial value">
A multi-line text field
<textarea name="textarea" cols="24" rows="2">Hello</textarea>
A password field:
<input type="password" name="textfield3" value="secret">
• Note that two of these use the input tag, but one uses textarea
7
Buttons
◼ A submit button:
<input type="submit" name="Submit" value="Submit">
◼ A reset button:
<input type="reset" name="Submit2" value="Reset">
◼ A plain button:
<input type="button" name="Submit3" value="Push Me">
◼ submit: send data
◼ reset: restore all form elements to
their initial state
◼ button: take some action as
specified by JavaScript
• Note that the type is input, not “button”
8
Checkboxes
◼ A checkbox:
<input type="checkbox" name="checkbox”
value="checkbox" checked>
◼ type: "checkbox"
◼ name: used to reference this form element from JavaScript
◼ value: value to be returned when element is checked
◼ Note that there is no text associated with the checkbox—
you have to supply text in the surrounding HTML
9
Radio buttons
Radio buttons:<br>
<input type="radio" name="radiobutton" value="myValue1">
male<br>
<input type="radio" name="radiobutton" value="myValue2" checked>
female
◼ If two or more radio buttons have the same name, the user can
only select one of them at a time
◼ This is how you make a radio button “group”
◼ If you ask for the value of that name, you will get the value
specified for the selected radio button
◼ As with checkboxes, radio buttons do not contain any text
10
Drop-down menu or list
◼ A menu or list:
<select name="select">
<option value="red">red</option>
<option value="green">green</option>
<option value="BLUE">blue</option>
</select>
◼ Additional arguments:
◼ size: the number of items visible in the list (default is "1")
◼ multiple: if set to "true", any number of items may be selected
(default is "false")
11
Hidden fields
◼ <input type="hidden" name="hiddenField" value="nyah">
&lt;-- right there, don't you see it?
◼ What good is this?
◼ All input fields are sent back to the server, including hidden fields
◼ This is a way to include information that the user doesn’t need to see (or
that you don’t want her to see)
◼ The value of a hidden field can be set programmatically (by JavaScript)
before the form is submitted
12
A complete example
<html>
<head>
<title>Get Identity</title>
<meta http-equiv="Content-Type" content="text/html;
charset=iso-8859-1">
</head>
<body>
<p><b>Who are you?</b></p>
<form method="post" action="">
<p>Name:
<input type="text" name="textfield">
</p>
<p>Gender:
<input type="radio" name="gender" value="m">Male
<input type="radio" name="gender" value="f">Female</p>
</form>
</body>
</html>
13
The End

More Related Content

Similar to 8741aad2f359a5ee62afdf4cc4341440 (1) (1) (1).pdf

Web forms and html lecture Number 4
Web forms and html lecture Number 4Web forms and html lecture Number 4
Web forms and html lecture Number 4
Mudasir Syed
 
05 html-forms
05 html-forms05 html-forms
05 html-formsPalakshya
 
Html Form Controls
Html Form ControlsHtml Form Controls
Html,Css and Javascript Forms using different tags
Html,Css and Javascript Forms using different tagsHtml,Css and Javascript Forms using different tags
Html,Css and Javascript Forms using different tags
JeirahTigas
 
Html form tag
Html form tagHtml form tag
Html form tag
shreyachougule
 
HTML 5 Simple Tutorial Part 4
HTML 5 Simple Tutorial Part 4HTML 5 Simple Tutorial Part 4
HTML 5 Simple Tutorial Part 4
Sanjeev Kumar
 
Html Forms.ppt
Html Forms.pptHtml Forms.ppt
Html Forms.ppt
MAHASWETAMANDAL1
 
HTML Forms Basics by Kamran Solangi.pptx
HTML Forms Basics by Kamran Solangi.pptxHTML Forms Basics by Kamran Solangi.pptx
HTML Forms Basics by Kamran Solangi.pptx
KamranSolangi1
 
uptu web technology unit 2 html
uptu web technology unit 2 htmluptu web technology unit 2 html
uptu web technology unit 2 html
Abhishek Kesharwani
 
HTML Forms
HTML FormsHTML Forms
HTML Forms
bismakhan12
 
Designing web pages html forms and input
Designing web pages html  forms and inputDesigning web pages html  forms and input
Designing web pages html forms and inputJesus Obenita Jr.
 
HTML and CSS part 2
HTML and CSS part 2HTML and CSS part 2
HTML and CSS part 2
Julie Iskander
 
Input tags (report)
Input tags (report)Input tags (report)
Input tags (report)
Keren Compelio
 
Web design - Working with forms in HTML
Web design - Working with forms in HTMLWeb design - Working with forms in HTML
Web design - Working with forms in HTML
Mustafa Kamel Mohammadi
 
CSS_Forms.pdf
CSS_Forms.pdfCSS_Forms.pdf
CSS_Forms.pdf
gunjansingh599205
 
Html form
Html formHtml form
Html form
Jaya Kumari
 
wt mod2.pdf
wt mod2.pdfwt mod2.pdf
wt mod2.pdf
VinayKumarV24
 

Similar to 8741aad2f359a5ee62afdf4cc4341440 (1) (1) (1).pdf (20)

Web forms and html lecture Number 4
Web forms and html lecture Number 4Web forms and html lecture Number 4
Web forms and html lecture Number 4
 
05 html-forms
05 html-forms05 html-forms
05 html-forms
 
Html4
Html4Html4
Html4
 
Html Form Controls
Html Form ControlsHtml Form Controls
Html Form Controls
 
Html,Css and Javascript Forms using different tags
Html,Css and Javascript Forms using different tagsHtml,Css and Javascript Forms using different tags
Html,Css and Javascript Forms using different tags
 
Html form tag
Html form tagHtml form tag
Html form tag
 
HTML 5 Simple Tutorial Part 4
HTML 5 Simple Tutorial Part 4HTML 5 Simple Tutorial Part 4
HTML 5 Simple Tutorial Part 4
 
Html Forms.ppt
Html Forms.pptHtml Forms.ppt
Html Forms.ppt
 
HTML Forms Basics by Kamran Solangi.pptx
HTML Forms Basics by Kamran Solangi.pptxHTML Forms Basics by Kamran Solangi.pptx
HTML Forms Basics by Kamran Solangi.pptx
 
uptu web technology unit 2 html
uptu web technology unit 2 htmluptu web technology unit 2 html
uptu web technology unit 2 html
 
Html forms
Html formsHtml forms
Html forms
 
HTML Forms
HTML FormsHTML Forms
HTML Forms
 
Html4
Html4Html4
Html4
 
Designing web pages html forms and input
Designing web pages html  forms and inputDesigning web pages html  forms and input
Designing web pages html forms and input
 
HTML and CSS part 2
HTML and CSS part 2HTML and CSS part 2
HTML and CSS part 2
 
Input tags (report)
Input tags (report)Input tags (report)
Input tags (report)
 
Web design - Working with forms in HTML
Web design - Working with forms in HTMLWeb design - Working with forms in HTML
Web design - Working with forms in HTML
 
CSS_Forms.pdf
CSS_Forms.pdfCSS_Forms.pdf
CSS_Forms.pdf
 
Html form
Html formHtml form
Html form
 
wt mod2.pdf
wt mod2.pdfwt mod2.pdf
wt mod2.pdf
 

Recently uploaded

RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
IreneSebastianRueco1
 
Delivering Micro-Credentials in Technical and Vocational Education and Training
Delivering Micro-Credentials in Technical and Vocational Education and TrainingDelivering Micro-Credentials in Technical and Vocational Education and Training
Delivering Micro-Credentials in Technical and Vocational Education and Training
AG2 Design
 
Pride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School DistrictPride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School District
David Douglas School District
 
Digital Artefact 1 - Tiny Home Environmental Design
Digital Artefact 1 - Tiny Home Environmental DesignDigital Artefact 1 - Tiny Home Environmental Design
Digital Artefact 1 - Tiny Home Environmental Design
amberjdewit93
 
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
Nguyen Thanh Tu Collection
 
Aficamten in HCM (SEQUOIA HCM TRIAL 2024)
Aficamten in HCM (SEQUOIA HCM TRIAL 2024)Aficamten in HCM (SEQUOIA HCM TRIAL 2024)
Aficamten in HCM (SEQUOIA HCM TRIAL 2024)
Ashish Kohli
 
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
EugeneSaldivar
 
A Survey of Techniques for Maximizing LLM Performance.pptx
A Survey of Techniques for Maximizing LLM Performance.pptxA Survey of Techniques for Maximizing LLM Performance.pptx
A Survey of Techniques for Maximizing LLM Performance.pptx
thanhdowork
 
Lapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdfLapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdf
Jean Carlos Nunes Paixão
 
South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)
Academy of Science of South Africa
 
Acetabularia Information For Class 9 .docx
Acetabularia Information For Class 9  .docxAcetabularia Information For Class 9  .docx
Acetabularia Information For Class 9 .docx
vaibhavrinwa19
 
Assignment_4_ArianaBusciglio Marvel(1).docx
Assignment_4_ArianaBusciglio Marvel(1).docxAssignment_4_ArianaBusciglio Marvel(1).docx
Assignment_4_ArianaBusciglio Marvel(1).docx
ArianaBusciglio
 
CACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdfCACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdf
camakaiclarkmusic
 
2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...
Sandy Millin
 
The Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collectionThe Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collection
Israel Genealogy Research Association
 
How to Add Chatter in the odoo 17 ERP Module
How to Add Chatter in the odoo 17 ERP ModuleHow to Add Chatter in the odoo 17 ERP Module
How to Add Chatter in the odoo 17 ERP Module
Celine George
 
Normal Labour/ Stages of Labour/ Mechanism of Labour
Normal Labour/ Stages of Labour/ Mechanism of LabourNormal Labour/ Stages of Labour/ Mechanism of Labour
Normal Labour/ Stages of Labour/ Mechanism of Labour
Wasim Ak
 
"Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe..."Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe...
SACHIN R KONDAGURI
 
DRUGS AND ITS classification slide share
DRUGS AND ITS classification slide shareDRUGS AND ITS classification slide share
DRUGS AND ITS classification slide share
taiba qazi
 
MATATAG CURRICULUM: ASSESSING THE READINESS OF ELEM. PUBLIC SCHOOL TEACHERS I...
MATATAG CURRICULUM: ASSESSING THE READINESS OF ELEM. PUBLIC SCHOOL TEACHERS I...MATATAG CURRICULUM: ASSESSING THE READINESS OF ELEM. PUBLIC SCHOOL TEACHERS I...
MATATAG CURRICULUM: ASSESSING THE READINESS OF ELEM. PUBLIC SCHOOL TEACHERS I...
NelTorrente
 

Recently uploaded (20)

RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
 
Delivering Micro-Credentials in Technical and Vocational Education and Training
Delivering Micro-Credentials in Technical and Vocational Education and TrainingDelivering Micro-Credentials in Technical and Vocational Education and Training
Delivering Micro-Credentials in Technical and Vocational Education and Training
 
Pride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School DistrictPride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School District
 
Digital Artefact 1 - Tiny Home Environmental Design
Digital Artefact 1 - Tiny Home Environmental DesignDigital Artefact 1 - Tiny Home Environmental Design
Digital Artefact 1 - Tiny Home Environmental Design
 
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
 
Aficamten in HCM (SEQUOIA HCM TRIAL 2024)
Aficamten in HCM (SEQUOIA HCM TRIAL 2024)Aficamten in HCM (SEQUOIA HCM TRIAL 2024)
Aficamten in HCM (SEQUOIA HCM TRIAL 2024)
 
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
 
A Survey of Techniques for Maximizing LLM Performance.pptx
A Survey of Techniques for Maximizing LLM Performance.pptxA Survey of Techniques for Maximizing LLM Performance.pptx
A Survey of Techniques for Maximizing LLM Performance.pptx
 
Lapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdfLapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdf
 
South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)
 
Acetabularia Information For Class 9 .docx
Acetabularia Information For Class 9  .docxAcetabularia Information For Class 9  .docx
Acetabularia Information For Class 9 .docx
 
Assignment_4_ArianaBusciglio Marvel(1).docx
Assignment_4_ArianaBusciglio Marvel(1).docxAssignment_4_ArianaBusciglio Marvel(1).docx
Assignment_4_ArianaBusciglio Marvel(1).docx
 
CACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdfCACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdf
 
2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...
 
The Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collectionThe Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collection
 
How to Add Chatter in the odoo 17 ERP Module
How to Add Chatter in the odoo 17 ERP ModuleHow to Add Chatter in the odoo 17 ERP Module
How to Add Chatter in the odoo 17 ERP Module
 
Normal Labour/ Stages of Labour/ Mechanism of Labour
Normal Labour/ Stages of Labour/ Mechanism of LabourNormal Labour/ Stages of Labour/ Mechanism of Labour
Normal Labour/ Stages of Labour/ Mechanism of Labour
 
"Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe..."Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe...
 
DRUGS AND ITS classification slide share
DRUGS AND ITS classification slide shareDRUGS AND ITS classification slide share
DRUGS AND ITS classification slide share
 
MATATAG CURRICULUM: ASSESSING THE READINESS OF ELEM. PUBLIC SCHOOL TEACHERS I...
MATATAG CURRICULUM: ASSESSING THE READINESS OF ELEM. PUBLIC SCHOOL TEACHERS I...MATATAG CURRICULUM: ASSESSING THE READINESS OF ELEM. PUBLIC SCHOOL TEACHERS I...
MATATAG CURRICULUM: ASSESSING THE READINESS OF ELEM. PUBLIC SCHOOL TEACHERS I...
 

8741aad2f359a5ee62afdf4cc4341440 (1) (1) (1).pdf

  • 1. Group :- 1 Presented by :- deepak anurag sharma bhanu akansha sharma champa meena
  • 3. 2 What are forms? ◼ <form> is just another kind of HTML tag ◼ HTML forms are used to create (rather primitive) GUIs on Web pages ◼ Usually the purpose is to ask the user for information ◼ The information is then sent back to the server ◼ A form is an area that can contain form elements ◼ The syntax is: <form parameters> ...form elements... </form> ◼ Form elements include: buttons, checkboxes, text fields, radio buttons, drop-down menus, etc ◼ Other kinds of HTML tags can be mixed in with the form elements ◼ A form usually contains a Submit button to send the information in he form elements to the server ◼ The form’s parameters tell JavaScript how to send the information to the server (there are two different ways it could be sent) ◼ Forms can be used for other things, such as a GUI for simple programs
  • 4. 3 Forms and JavaScript ◼ The JavaScript language can be used to make pages that “do something” ◼ You can use JavaScript to write complete programs, but... ◼ Usually you just use snippets of JavaScript here and there throughout your Web page ◼ JavaScript code snippets can be attached to various form elements ◼ For example, you might want to check that a zipcode field contains a 5-digit integer before you send that information to the server ◼ Microsoft sometimes calls JavaScript “active scripting” ◼ HTML forms can be used without JavaScript, and JavaScript can be used without HTML forms, but they work well together ◼ JavaScript for HTML is covered in a separate lecture
  • 5. 4 The <form> tag ◼ The <form arguments> ... </form> tag encloses form elements (and probably other HTML as well) ◼ The arguments to form tell what to do with the user input ◼ action="url" (required) ◼ Specifies where to send the data when the Submit button is clicked ◼ method="get" (default) ◼ Form data is sent as a URL with ?form_data info appended to the end ◼ Can be used only if data is all ASCII and not more than 100 characters ◼ method="post" ◼ Form data is sent in the body of the URL request ◼ Cannot be bookmarked by most browsers ◼ target="target" ◼ Tells where to open the page sent as a result of the request ◼ target= _blank means open in a new window ◼ target= _top means use the same window
  • 6. 5 The <input> tag ◼ Most, but not all, form elements use the input tag, with a type="..." argument to tell which kind of element it is ◼ type can be text, checkbox, radio, password, hidden, submit, reset, button, file, or image ◼ Other common input tag arguments include: ◼ name: the name of the element ◼ value: the “value” of the element; used in different ways for different values of type ◼ readonly: the value cannot be changed ◼ disabled: the user can’t do anything with this element ◼ Other arguments are defined for the input tag but have meaning only for certain values of type
  • 7. 6 Text input A text field: <input type="text" name="textfield" value="with an initial value"> A multi-line text field <textarea name="textarea" cols="24" rows="2">Hello</textarea> A password field: <input type="password" name="textfield3" value="secret"> • Note that two of these use the input tag, but one uses textarea
  • 8. 7 Buttons ◼ A submit button: <input type="submit" name="Submit" value="Submit"> ◼ A reset button: <input type="reset" name="Submit2" value="Reset"> ◼ A plain button: <input type="button" name="Submit3" value="Push Me"> ◼ submit: send data ◼ reset: restore all form elements to their initial state ◼ button: take some action as specified by JavaScript • Note that the type is input, not “button”
  • 9. 8 Checkboxes ◼ A checkbox: <input type="checkbox" name="checkbox” value="checkbox" checked> ◼ type: "checkbox" ◼ name: used to reference this form element from JavaScript ◼ value: value to be returned when element is checked ◼ Note that there is no text associated with the checkbox— you have to supply text in the surrounding HTML
  • 10. 9 Radio buttons Radio buttons:<br> <input type="radio" name="radiobutton" value="myValue1"> male<br> <input type="radio" name="radiobutton" value="myValue2" checked> female ◼ If two or more radio buttons have the same name, the user can only select one of them at a time ◼ This is how you make a radio button “group” ◼ If you ask for the value of that name, you will get the value specified for the selected radio button ◼ As with checkboxes, radio buttons do not contain any text
  • 11. 10 Drop-down menu or list ◼ A menu or list: <select name="select"> <option value="red">red</option> <option value="green">green</option> <option value="BLUE">blue</option> </select> ◼ Additional arguments: ◼ size: the number of items visible in the list (default is "1") ◼ multiple: if set to "true", any number of items may be selected (default is "false")
  • 12. 11 Hidden fields ◼ <input type="hidden" name="hiddenField" value="nyah"> &lt;-- right there, don't you see it? ◼ What good is this? ◼ All input fields are sent back to the server, including hidden fields ◼ This is a way to include information that the user doesn’t need to see (or that you don’t want her to see) ◼ The value of a hidden field can be set programmatically (by JavaScript) before the form is submitted
  • 13. 12 A complete example <html> <head> <title>Get Identity</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body> <p><b>Who are you?</b></p> <form method="post" action=""> <p>Name: <input type="text" name="textfield"> </p> <p>Gender: <input type="radio" name="gender" value="m">Male <input type="radio" name="gender" value="f">Female</p> </form> </body> </html>