How to Create HTML Forms


You can add a form to an existing HTML document inside the <form></form> tags. These tags act as a container for all of your form data, such as text fields, lists, and buttons. When someone submits information through your form, the data will be sent to a sever that will save, process, send, or display results based on the content. Learn how to set up the <form> tag so your form does what you want, as well as how to add inputs to collect information.

Part One of Three: Building the Form Tag.

1. Open your HTML document in your preferred text editor.
The content of an HTML form must be typed within the <form> and </form> tags. These tags act as a container for your form, like other container tags like <div></div> and <table></table>
• You can use CSS or HTML inside the <form></form> tags to make your form look the way you want.

2. Open the <form> element.
To start your form, scroll to the location in your file where the form should begin and type <form> on its own line. This tag signifies the beginning of your form.

3. Add the “action=” attribute to the <form> tag.
This tells the <form> tag what to do with the form data. You’ll define this by adding
action=”path_to_script” to the <form> tag.

• For example: <form action=”/cgi-bin/myformscript.pl”> (if the script that will parse the form data is located in a directory on your server called “cgi-bin”).
• If the script is on another server: <form action=” https://www.jalaloaded.com/form” >
• To send the form data to an email address (not a script):
 <form action=” mailto:you@yourdomain.com” enctype=”text/plain”>

4. Decide how the form data will be sent.
Now that you’ve defined where the form data will be sent, you must decide whether your form will “GET” or “POST” the data. Then, you will add either “GET” or “POST” as the method attribute inside the <form> tag.
Use method=”get” to request data from a resource. You should only use GET to retrieve data. Never use GET with sensitive information like passwords or social security numbers.
•Use method="post" to submit data to be processed. Use this if the form data is sensitive, such as for passwords or credit card numbers.
• The end result should follow this format: <form action=”/cgi-bin/myformscript.pl” method=”post”>

Part Two of Three: Adding Form Options

1. Create a text box using <input type=”text” />
You can add a blank box in which your visitors can type their names, comments, or anything else you may need. Start this on a new line after the <form> tag.
• For example, First Name: <input type=”text” id=”name” /> creates a text box prefaced by “First Name:” so users know what to type into the box.
• Change the “id=” value (“name” in the example) to match what you’re doing with the data. If the data is sent to a script, this value should correspond with something in the script.

2. Create a password box.
If your script calls for a user to enter a password, you’ll add another <input />, this time with the “type” attribute set to “password.”
• On a new line, type
Password: <input type=”password” name=”password” />

3. Add radio buttons for options.
If you’d like visitors to choose from a list of items, create a list of options with radio buttons. To do this, you’ll use the <input /> tag with the “type” attribute set to “radio”.

To create a radio buttons to select either “Dog” or “Cat”:
<input type=”radio” name=”pets” value=”dog” /> Dog

<input type=”radio” name=”pets” value=”cat” /> Cat
A group of radio buttons should all have the same “name” attribute.

Part Three of Three: Closing Your Form

1. Create a Submit <button>
Once your visitor fills out the form, they’ll need to submit it by clicking a submit button. Here’s an example:
<button type="submit">Send your message</button>
• Replace “Send your message” with the text you want to appear on the button.

2. Type </form> at the end of the form.
This tag indicates that the form is over. Remember, all form content must be inside
<form> and </form>

3. Upload your document to your web server.
Now that you’ve added a form to your HTML document, upload it to your web server and give it a test run!

Tips
• Since most of HTML became XHTML, the <input> tag should include (before the ending bracket) a space and a backslash. For example: <input type="submit" />
• You can place the <fieldset></fieldset> tags around a group of form elements to group them together inside of a separate box.




If you are confused you can contact me

Comments

Popular posts from this blog

GST: Nigerian Peoples and Culture authentic Summary easy to understand for student without stressing yourself