SlideShare a Scribd company logo
1 of 6
Download to read offline
http://www.siteforinfotech.com/2015/02/how-to-create-simple-form-using-html.html pdfcrowd.com
How To Create A Simple Form Using HTML?
From is a necessary element in any website or blog. Mostly
they are used to take user information for any of the purposes
like logging into the user account, creating user account,
allowing to subscribe malling list, allowing users to submit
comments and allowing users to contact website admin,
support or sales team.
Here I am going to describe "How to create a simple form
using HTML" step by step with describing what is a form and
what elements are used to create HTML form along with
complete HTML code for a form.
A form is an area that contain form elements. You must set up
a form before adding in run to the web page. To setup a form,
you need to specify two important information Method and
Action.
Method is a property tells the form how to transfer the data to
the form processor. The value for method can be 'post' or 'get'
In post method you are just posting information and method
get means that you are just going to get another page. In
almost all of the form post method is used.
Action property tells what action the form should take when
the user presses the submit button. Action is the URL to which
you are posting the information.
We have to use different HTML tags to create a form. The most
commonly used HTML tags to create a form are listed below.
http://www.siteforinfotech.com/2015/02/how-to-create-simple-form-using-html.html pdfcrowd.com
Different Tags for HTML Form
<INPUT> Tag: The most form tag is <INPUT> tag. The type
of INPUT is specified with the TYPE attribute. This tag doesn't
have its ending tag. The most commonly used INPUT types
are listed below:
TEXT: It is used for plain type of text input. The attributes
used in this type are NAME, VALUE, SIZE and MAXLENGTH.
Example: <INPUT TYPE="TEXT" NAME="UserName"
VALUE="Username" SIZE=16 MAXLENGTH=15>
PASSWORD: It is used for password type of text input. The
attributes used in this type are NAME, VALUE, SIZE and
MAXLENGTH.
Example: <INPUT TYPE="PASSWORD" NAME="Password"
VALUE="Password" SIZE=16 MAXLENGTH=15>
RADIO: It is used for single choice input system. The
attributes used in this type are NAME, VALUE and CHECKED
Example: <INPUT TYPE="radio" NAME="sex" VALUE="M"
CHECKED>
CHECKBOX: It is used for multiple choice input system. The
attributes used in this type are NAME and VALUE.
Example: <INPUT TYPE="checkbox" NAME="MCQ"
VALUE="M">
http://www.siteforinfotech.com/2015/02/how-to-create-simple-form-using-html.html pdfcrowd.com
RESET: It is used to reset values entered in a form. Value is
the attribute of RESET type of INPUT.
Example: <INPUT TYPE="reset" VALUE="Clear Form">
SUBMIT: It is used to submit values entered in a form. Value
is the attribute of SUBMIT type of INPUT.
Example: <INPUT TYPE="submit" VALUE="Submit">
<TEXTAREA> Tag: This tag is used to specify the area of the
text. This tag makes a two dimensional text area, in which
viewer can type from a short sentence to many paragraphs.
This tag has its ending tag and it is mostly used to create
comment form or contact form. The attributes in this tag are
NAME, VALUE, COLS and ROWS.
Example: <TEXTAREA NAME="Details" COLS=30
ROWS=5></TEXTAREA>
<SELECT> Tag: This tag is used to create a menu that offers
visitors a list of option to choose from. This tab has also its
ending tag. The attributes in this tag are NAME, MULTIPLE and
SIZE.
Example: <SELECT NAME="Menu" MULTIPLE
SIZE=3><OPTION>.....</SELECT>
<OPTION> Tag: It is the mini tag of <SELECT> tag. This tag
is used to define the options to choose from the drop-down
list. SELECTED is the attribute of <OPTION> Tag.
Example: <SELECT NAME="Menu" MULTIPLE
SIZE=3><OPTION SELECTED>Programming
http://www.siteforinfotech.com/2015/02/how-to-create-simple-form-using-html.html pdfcrowd.com
Guide<OPTION>MCQs</SELECT>
Here is a sample form to allow users to create user and
subscribe for the topics they want along with complete HTML
code and its output.
HTML Code to Create a Simple Form
<html>
<head><title>Subscription Form</title></head>
<body>
<h1 align=center>Subscription Form</h1>
<br/>
<FORM METHOD='POST' ACTION=mailto:siteforinfotech@gmail.c
<DIV>First Name:<INPUT TYPE='text' NAME='fname' VALUE='En
<DIV>Last Name:<INPUT TYPE='text' NAME='lname' VALUE='Ent
<DIV>Password:<INPUT TYPE='password' NAME='password' SIZE
<DIV>Retype Password:<INPUT TYPE='password' NAME='rpasswo
<DIV>Email:<INPUT TYPE='text' NAME='email' VALUE='Enter Y
<DIV>Sex:<INPUT TYPE='radio' NAME='sex' VALUE='M'>Male<IN
<DIV>Write About You:<TEXTAREA NAME='about' COLS=30 ROWS=
<DIV>Your Academic Level: <SELECT><OPTION>High School<OPT
<DIV>Select your Topic to Subscribe:<br/><INPUT TYPE='che
<INPUT TYPE='checkbox' NAME='topic' VALUE='T'>IT Tutorial
<INPUT TYPE='checkbox' NAME='topic' VALUE='P'>Programming
<INPUT TYPE='submit' VALUE='Submit'><INPUT TYPE='reset' V
</FORM>
</body>
</html>
Preview of the above HTML Code
http://www.siteforinfotech.com/2015/02/how-to-create-simple-form-using-html.html pdfcrowd.com
Subscription Form
First Name: Enter First Name
Last Name: Enter Last Name
Password:
Retype Password:
Email: Enter Your Email
Sex: Male Female
Write About You:
Your Academic Level: High School
Select your Topic to Subscribe:
Multiple Choice Questions
IT Tutorials
Programming Guide
Submit Reset
Here I have posted the HTML codes for sample only. You can
customize this form according to your requirement. You can
http://www.siteforinfotech.com/2015/02/how-to-create-simple-form-using-html.html pdfcrowd.com
extract and use any element to create your own form.
Related Posts:
How To Create Simple Image Slideshow Using
JavaScript ?
Image Slideshow with Navigation Buttons Using
JavaScript
How to Create JavaScript Image Slideshow with LInks
How to Display Date Format in JavaScript?
How to Create a Digital Clock in JavaScript?
What are the Different Ways to Redirect Page in
JavaScript?
How to Detect Visitor's Browser Using JavaScript?
How to make rounded corners border using CSS
How to Create Custom CSS Template for Printing
How to Create Responsive Website or Blogger
Template

More Related Content

More from Shusil Baral

DBMS Multiple Choice Questions
DBMS Multiple Choice QuestionsDBMS Multiple Choice Questions
DBMS Multiple Choice QuestionsShusil Baral
 
Operating System Multiple Choice Questions
Operating System Multiple Choice QuestionsOperating System Multiple Choice Questions
Operating System Multiple Choice QuestionsShusil Baral
 
Collections of CS Multiple Choice Questions
Collections of CS Multiple Choice QuestionsCollections of CS Multiple Choice Questions
Collections of CS Multiple Choice QuestionsShusil Baral
 
Computer Networking Multiple Choice Questions
Computer Networking Multiple Choice QuestionsComputer Networking Multiple Choice Questions
Computer Networking Multiple Choice QuestionsShusil Baral
 
Basic IT Multiple Choice Questions
Basic IT Multiple Choice QuestionsBasic IT Multiple Choice Questions
Basic IT Multiple Choice QuestionsShusil Baral
 
Collection of-cs-multiple-choice-questions-mcqs
Collection of-cs-multiple-choice-questions-mcqsCollection of-cs-multiple-choice-questions-mcqs
Collection of-cs-multiple-choice-questions-mcqsShusil Baral
 

More from Shusil Baral (6)

DBMS Multiple Choice Questions
DBMS Multiple Choice QuestionsDBMS Multiple Choice Questions
DBMS Multiple Choice Questions
 
Operating System Multiple Choice Questions
Operating System Multiple Choice QuestionsOperating System Multiple Choice Questions
Operating System Multiple Choice Questions
 
Collections of CS Multiple Choice Questions
Collections of CS Multiple Choice QuestionsCollections of CS Multiple Choice Questions
Collections of CS Multiple Choice Questions
 
Computer Networking Multiple Choice Questions
Computer Networking Multiple Choice QuestionsComputer Networking Multiple Choice Questions
Computer Networking Multiple Choice Questions
 
Basic IT Multiple Choice Questions
Basic IT Multiple Choice QuestionsBasic IT Multiple Choice Questions
Basic IT Multiple Choice Questions
 
Collection of-cs-multiple-choice-questions-mcqs
Collection of-cs-multiple-choice-questions-mcqsCollection of-cs-multiple-choice-questions-mcqs
Collection of-cs-multiple-choice-questions-mcqs
 

Recently uploaded

MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsNanddeep Nachan
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...apidays
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...apidays
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?Igalia
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProduct Anonymous
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWERMadyBayot
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAndrey Devyatkin
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)wesley chun
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...Zilliz
 
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot ModelNavi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot ModelDeepika Singh
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyKhushali Kathiriya
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesrafiqahmad00786416
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MIND CTI
 

Recently uploaded (20)

MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectors
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot ModelNavi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challenges
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 

Www siteforinfotech com_2015_02_how_to_create_simple_form_us

  • 1. http://www.siteforinfotech.com/2015/02/how-to-create-simple-form-using-html.html pdfcrowd.com How To Create A Simple Form Using HTML? From is a necessary element in any website or blog. Mostly they are used to take user information for any of the purposes like logging into the user account, creating user account, allowing to subscribe malling list, allowing users to submit comments and allowing users to contact website admin, support or sales team. Here I am going to describe "How to create a simple form using HTML" step by step with describing what is a form and what elements are used to create HTML form along with complete HTML code for a form. A form is an area that contain form elements. You must set up a form before adding in run to the web page. To setup a form, you need to specify two important information Method and Action. Method is a property tells the form how to transfer the data to the form processor. The value for method can be 'post' or 'get' In post method you are just posting information and method get means that you are just going to get another page. In almost all of the form post method is used. Action property tells what action the form should take when the user presses the submit button. Action is the URL to which you are posting the information. We have to use different HTML tags to create a form. The most commonly used HTML tags to create a form are listed below.
  • 2. http://www.siteforinfotech.com/2015/02/how-to-create-simple-form-using-html.html pdfcrowd.com Different Tags for HTML Form <INPUT> Tag: The most form tag is <INPUT> tag. The type of INPUT is specified with the TYPE attribute. This tag doesn't have its ending tag. The most commonly used INPUT types are listed below: TEXT: It is used for plain type of text input. The attributes used in this type are NAME, VALUE, SIZE and MAXLENGTH. Example: <INPUT TYPE="TEXT" NAME="UserName" VALUE="Username" SIZE=16 MAXLENGTH=15> PASSWORD: It is used for password type of text input. The attributes used in this type are NAME, VALUE, SIZE and MAXLENGTH. Example: <INPUT TYPE="PASSWORD" NAME="Password" VALUE="Password" SIZE=16 MAXLENGTH=15> RADIO: It is used for single choice input system. The attributes used in this type are NAME, VALUE and CHECKED Example: <INPUT TYPE="radio" NAME="sex" VALUE="M" CHECKED> CHECKBOX: It is used for multiple choice input system. The attributes used in this type are NAME and VALUE. Example: <INPUT TYPE="checkbox" NAME="MCQ" VALUE="M">
  • 3. http://www.siteforinfotech.com/2015/02/how-to-create-simple-form-using-html.html pdfcrowd.com RESET: It is used to reset values entered in a form. Value is the attribute of RESET type of INPUT. Example: <INPUT TYPE="reset" VALUE="Clear Form"> SUBMIT: It is used to submit values entered in a form. Value is the attribute of SUBMIT type of INPUT. Example: <INPUT TYPE="submit" VALUE="Submit"> <TEXTAREA> Tag: This tag is used to specify the area of the text. This tag makes a two dimensional text area, in which viewer can type from a short sentence to many paragraphs. This tag has its ending tag and it is mostly used to create comment form or contact form. The attributes in this tag are NAME, VALUE, COLS and ROWS. Example: <TEXTAREA NAME="Details" COLS=30 ROWS=5></TEXTAREA> <SELECT> Tag: This tag is used to create a menu that offers visitors a list of option to choose from. This tab has also its ending tag. The attributes in this tag are NAME, MULTIPLE and SIZE. Example: <SELECT NAME="Menu" MULTIPLE SIZE=3><OPTION>.....</SELECT> <OPTION> Tag: It is the mini tag of <SELECT> tag. This tag is used to define the options to choose from the drop-down list. SELECTED is the attribute of <OPTION> Tag. Example: <SELECT NAME="Menu" MULTIPLE SIZE=3><OPTION SELECTED>Programming
  • 4. http://www.siteforinfotech.com/2015/02/how-to-create-simple-form-using-html.html pdfcrowd.com Guide<OPTION>MCQs</SELECT> Here is a sample form to allow users to create user and subscribe for the topics they want along with complete HTML code and its output. HTML Code to Create a Simple Form <html> <head><title>Subscription Form</title></head> <body> <h1 align=center>Subscription Form</h1> <br/> <FORM METHOD='POST' ACTION=mailto:siteforinfotech@gmail.c <DIV>First Name:<INPUT TYPE='text' NAME='fname' VALUE='En <DIV>Last Name:<INPUT TYPE='text' NAME='lname' VALUE='Ent <DIV>Password:<INPUT TYPE='password' NAME='password' SIZE <DIV>Retype Password:<INPUT TYPE='password' NAME='rpasswo <DIV>Email:<INPUT TYPE='text' NAME='email' VALUE='Enter Y <DIV>Sex:<INPUT TYPE='radio' NAME='sex' VALUE='M'>Male<IN <DIV>Write About You:<TEXTAREA NAME='about' COLS=30 ROWS= <DIV>Your Academic Level: <SELECT><OPTION>High School<OPT <DIV>Select your Topic to Subscribe:<br/><INPUT TYPE='che <INPUT TYPE='checkbox' NAME='topic' VALUE='T'>IT Tutorial <INPUT TYPE='checkbox' NAME='topic' VALUE='P'>Programming <INPUT TYPE='submit' VALUE='Submit'><INPUT TYPE='reset' V </FORM> </body> </html> Preview of the above HTML Code
  • 5. http://www.siteforinfotech.com/2015/02/how-to-create-simple-form-using-html.html pdfcrowd.com Subscription Form First Name: Enter First Name Last Name: Enter Last Name Password: Retype Password: Email: Enter Your Email Sex: Male Female Write About You: Your Academic Level: High School Select your Topic to Subscribe: Multiple Choice Questions IT Tutorials Programming Guide Submit Reset Here I have posted the HTML codes for sample only. You can customize this form according to your requirement. You can
  • 6. http://www.siteforinfotech.com/2015/02/how-to-create-simple-form-using-html.html pdfcrowd.com extract and use any element to create your own form. Related Posts: How To Create Simple Image Slideshow Using JavaScript ? Image Slideshow with Navigation Buttons Using JavaScript How to Create JavaScript Image Slideshow with LInks How to Display Date Format in JavaScript? How to Create a Digital Clock in JavaScript? What are the Different Ways to Redirect Page in JavaScript? How to Detect Visitor's Browser Using JavaScript? How to make rounded corners border using CSS How to Create Custom CSS Template for Printing How to Create Responsive Website or Blogger Template