Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

My first HTML form

This translation is incomplete. Please help translate this article from English.

এটি HTML ফর্ম এর উপর একটি প্রাথমিক আর্টিকেল। একটি কন্টাক্ট ফর্ম এর মাধ্যমে আমরা দেখব HTML ফর্ম তৈরি করতে কি কি বেসিক এলিমেন্ট প্রয়োজন। আমি অনুমান করে নিচ্ছি HTML ফর্ম সম্পর্কে আপনার কোনো ধারনা নেই কিন্তু HTML এবং CSS এর প্রাথমিক বিষয় গুলো আপনি জানেন।

শুরু করার আগে

HTML ফর্ম কি?

HTML ফর্ম এ ইউজার সরাসরি ওয়েবসাইট অথবা ওয়েব অ্যাপ্লিকেশান এর সাথে ইনটারেক্ট করে থাকে। এটি ইউজার কে ওয়েবসাইট এ তথ্য পাঠানোর সুযোগ করে দেয়। তবে বেশিরভাগ সময় ওয়েব সার্ভার এ তথ্য পাঠানো হয়। কিন্তু ওয়েবসাইট ও এই তথ্য ব্যাবহার করতে পারে।

একটি HTML ফর্ম এক বা একাধিক উইডজেট দিয়ে বানানো হয়। এই উইডজেটগুলো টেক্সট ফিল্ড (এক বা একাধিক লাইন), সিলেক্ট বক্স, বাটন, চেকবক্স অথবা রেডিও বাটন ও হতে পারে। বেশিরভাগ সময় উইডজেটগুলোর উদ্দেশ্য ব্যাখ্যা করার জন্য উইডজেটগুলোর সাথে লেভেল থাকে।

ফর্ম নিয়ে কাজ করার জন্য কি প্রয়োজন?

HTML নিয়ে কাজ করার জন্য যা যা প্রয়োজন যেমন: টেক্সট এডিটর, ব্রাউজার, ফর্ম নিয়ে কাজ করার জন্য এর বেশি কিছুর দরকার নেই। তবে আপনার যদি IDE যেমন: Visual Studio, Eclipse, Aptana সম্পর্কে ধারনা থাকে তবে আপনি তা ব্যাবহার করতে পারেন।

HTML ফর্ম ও HTML ডকুমেন্ট এর মদ্ধে প্রধান পার্থক্য হচ্ছে , ফর্ম থেকে সংগ্রহীত ডাটা ওয়েব সার্ভারে পাঠানো হয়। তাই এই ডাটা সংগ্রহ ও প্রসেস করার জন্য একটি ওয়েব সার্ভার সেটআপ করতে হবে। কিভাবে ওয়েব সার্ভার সেটআপ করতে হবে তা Sending and retrieving form data আর্টিকেল এ আলোচনা করা হয়েছে।

ফর্ম ডিজাইন

Before starting to code, it's always better to step back and take the time to think about your form. Designing a quick mockup will help you to define the right set of data you want to ask to your user. From a user experience (UX) point of view, it's important to remember that the bigger your form, the more you risk losing users. Keep it simple and stay focused: ask only for what you absolutely need. Designing forms is an important step when you are building a site or application. It's beyond the scope of this article to cover forms, but if you want to dig into that topic you should read the following articles:

In this article we'll build a simple contact form. Let's make a rough sketch.

The form to build, roughly sketch

Our form will contain three text fields and one button. Basically, we ask the user for their name, their e-mail and the message they want to send. Hitting the button will just send the data to the web server.

Get your hands dirty with HTML

Ok, now we're ready to go to HTML and code our form. To build our contact form, we will use the following HTML elements: <form>, <label>, <input>, <textarea>, and <button>.

The <form> element

All HTML forms start with a <form> element like this:

<form action="/my-handling-form-page" method="post">

</form>

This element formally defines a form. It's a container element like a <div> or <p> element, but it also supports some specific attributes to configure the way the form behaves. All of its attributes are optional but it's considered best practice to always set at least the action attribute and the method attribute.

  • The action attibute defines the location (an URL) where the form's collected data should be sent.
  • The method attribute defines which HTTP method to send the data with (it can be "get" or "post").

If you want to dig into how those attributes work, it is detailed in the Sending and retrieving form data article.

Add widgets with the <label>, <input>, and <textarea> elements

Our contact form is really simple and contains three text fields, each with a label. The input field for the name will be a basic single-line text field; the input field for the e-mail will be a single-line text field that will accept only an e-mail address; the input field for the message will be a basic multiline text field.

In terms of HTML code we'll get something like this:

<form action="/my-handling-form-page" method="post">
    <div>
        <label for="name">Name:</label>
        <input type="text" id="name" />
    </div>
    <div>
        <label for="mail">E-mail:</label>
        <input type="email" id="mail" />
    </div>
    <div>
        <label for="msg">Message:</label>
        <textarea id="msg"></textarea>
    </div>
</form>

The <div> elements are there to conveniently structure our code and make styling easier (see below). Note the use of the for attribute on all <label> elements; it's a formal way to link a label to a form widget. This attribute references the id of the corresponding widget. There is some benefit to doing this. The most obvious one is to allow the user to click on the label to activate the corresponding widget. If you want a better understanding of the other benefits of this attribute, everything is detailed in the article: How to structure an HTML form.

On the <input> element, the most important attribute is the type attribute. This attribute is extremely important because it defines the way the <input> element behaves. It can radically change the element so pay attention to it. If you want to know more about this, go to read the native form widgets article. In our example we only use the value text—the default value for this attribute. It represents a basic single-line text field that accepts any kind of text without control or validation. We also use the value email that defines a single-line text field that only accepts a well-formed e-mail address. This last value turns a basic text field into a kind of "intelligent" field that will perform some checks on the data typed by the user. If you want to know more about form validation, we'll detail this in the Form data validation article.

Last but not least, note the syntax of <input /> vs. <textarea></textarea>. This is one of the oddities of HTML. The <input> tag is an auto-closing element, which means that if you want to formally close the element, you have to add a "/" at the end of the element itself and not a closing tag. On the contrary, <textarea> is not an auto-closing element, so you have to close it with the proper ending tag. This has an impact on a specific feature of HTML forms: the way you define the default value. To define the default value of an <input> element you have to use the value attribute like this:

<input type="text" value="by default this element is filled with this text" />

On the contrary, if you want to define the default value of a <textarea>, you just have to put that default value between the starting and ending tag of the <textarea> element, like this:

<textarea>by default this element is filled with this text</textarea>

And a <button> to finish

Our form is almost ready; we just have to add a button to allow the user to send their data once they have filled out the form. This is simply done by using the <button> element:

<form action="/my-handling-form-page" method="post">
    <div>
        <label for="name">Name:</label>
        <input type="text" id="name" />
    </div>
    <div>
        <label for="mail">E-mail:</label>
        <input type="email" id="mail" />
    </div>
    <div>
        <label for="msg">Message:</label>
        <textarea id="msg"></textarea>
    </div>
    
    <div class="button">
        <button type="submit">Send your message</button>
    </div>
</form>

A button can be of three types: submit, reset, or button.

  • A click on a submit button sends the form's data to the web page defined by the action attribute of the <form> element.
  • A click on a reset button resets all the form widgets to their default value immediately. From a UX point of view, this is considered bad practice.
  • A click on a button button does... nothing! That sounds silly, but it's amazingly useful to build custom buttons with JavaScript.

Note that you can also use the <input> element with the corresponding type to produce a button. The main difference with the <button> element is that the <input> element only allows plain text as its label whereas the <button> element allows full HTML content as its label.

Let's make it a bit nicer with CSS

Now that we have our HTML form, if you look at it in your favorite browser, you'll see that it looks kind of ugly.

Let's make it a little nicer with the following CSS stylesheet.

Let's start with the form itself; let's center it and make it visible with a border:

form {
    /* Just to center the form on the page */
    margin: 0 auto;
    width: 400px;
    /* To see the outline of the form */
    padding: 1em;
    border: 1px solid #CCC;
    border-radius: 1em;
}

Then, we will add some space between each of the form widgets:

form div + div {
    margin-top: 1em;
}

Now let's focus on the labels. To make our form more readable, it's considered best practice to have all the labels the same size and aligned along the same side. In that case, we will align them to the right, but in some cases left alignment can be okay too.

label {
    /* To make sure that all label have the same size and are properly align */
    display: inline-block;
    width: 90px;
    text-align: right;
}

One of the hardest things to do with HTML forms is to style HTML widgets themselves. Text fields are easy to style, but some other widgets are not. If you want to know more about styling HTML form widgets, go read the Styling HTML forms article.

Here we will use a few common tricks: harmonizing fonts, size, and borders:

input, textarea {
    /* To make sure that all text fields have the same font settings
       By default, textareas have a monospace font */
    font: 1em sans-serif;

    /* To give the same size to all text field */
    width: 300px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;

    /* To harmonize the look & feel of text field border */
    border: 1px solid #999;
}

HTML forms support a lot of pseudo-classes to describe the states of each element. As an example, we will add a little highlight when a widget is active. It's a convenient way to help the user keep track of where they are in the form.

input:focus, textarea:focus {
    /* To give a little highlight on active elements */
    border-color: #000;
}

Multiline text fields need a few custom styles on their own. By default, a <textarea> element is an inline block with its bottom aligned to the text baseline. Most of the time, this is not what we want. In that case, to nicely align the label and the field, we have to change the vertical-align property of the <textarea> to top.

Note also the use of the resize property, which is a convenient way to let users resize a <textarea>.

textarea {
    /* To properly align multiline text fields with their labels */
    vertical-align: top;

    /* To give enough room to type some text */
    height: 5em;

    /* To allow users to resize any textarea vertically
       It does not work on every browsers */
    resize: vertical;
}

Many times, the buttons need special styles as well. To that end, we put them inside a <div> with a class button. Here, we want the button to be aligned with the other widgets. To achieve that, we have to mimic the presence of a <label>. This is done by playing with padding and margin.

.button {
    /* To position the buttons to the same position of the text fields */
    padding-left: 90px; /* same size as the label elements */
}
button {
    /* This extra margin represent roughly the same space as the space
       between the labels and their text fields */
    margin-left: .5em;
}

Now our form looks much prettier.

Sending the data to your web server

The last part, and maybe the trickiest, is to handle form data on the server side. As we said before, most of the time, an HTML Form is a convenient way to ask the user for data and to send it to a web server.

The <form> element will define where and how to send the data thanks to the action attribute and the method attribute.

But it's not enough. We also need to give a name to our data. Those names are important on both sides; on the browser side, it tells the browser which name to give each piece of data, and on the server side, it lets the server handle each piece of data by name.

So to name your data you need to use the name attribute on each form widget that will collect a specific piece of data:

<form action="/my-handling-form-page" method="post">
    <div>
        <label for="name">Name:</label>
        <input type="text" id="name" name="user_name" />
    </div>
    <div>
        <label for="mail">E-mail:</label>
        <input type="email" id="mail" name="user_email" />
    </div>
    <div>
        <label for="msg">Message:</label>
        <textarea id="msg" name="user_message"></textarea>
    </div>
    
    <div class="button">
        <button type="submit">Send your message</button>
    </div>
</form>

In our example, the form will send 3 pieces of data, named "user_name", "user_email" and "user_message". That data will be sent to the URL "/my-handling-form-page" with the HTTP POST method.

On the server side, the script at the URL "/my-handling-form-page" will receive the data as a list of 3 key/value items embodied in the HTTP request. The way this script will handle that data is up to you. Each server-side language (PHP, Python, Ruby, Java, C#, etc.) has its own mechanism. It's beyond the scope of this guide to go deeply into that subject, but if you want to know more, we will give some examples on the Sending and retrieving form data article.

Conclusion

Congratulations! You've built your very first HTML form.  Here is a live example of the end result.

Live example

Now it's time to take a deeper look. HTML forms are way more powerful than what we saw here and the other articles of this guide will help you to master the rest.

ডকুমেন্ট ট্যাগ এবং অবদানকারী

 Contributors to this page: mmhyamin
 সর্বশেষ হালনাগাদ করেছেন: mmhyamin,