HTML forms are used to collect input from users and send that data to a server for processing. Common examples include login forms, registration forms, search bars, contact forms, checkout pages, surveys, and feedback forms.
The <form> element acts as a tl-container for all form controls such as text fields, radio buttons, checkboxes, dropdowns, file uploads, and submit buttons. When the user submits the form, the browser sends the form data according to the form's configuration.
<form action="/submit" method="POST">
<!-- form controls go here -->
<button type="submit">Submit</button>
</form>
The <form> tag supports several important attributes that control how data is submitted and how the browser handles the form. Understanding these attributes is essential when building real forms.
| Attribute | Description |
|---|---|
action | URL where form data is sent (default: current page) |
method | GET (data in URL) or POST (data in body - use for sensitive data) |
enctype | Use multipart/form-data when uploading files |
novalidate | Disables browser's built-in validation |
autocomplete | on or off - controls browser autofill |
Every important form control should have a label so users clearly understand what information is expected. Labels also improve accessibility because screen readers use them to describe inputs to users who rely on assistive technologies.
The best practice is to connect a <label> with an input using the for attribute on the label and the id attribute on the form control.
<label for="username">Username:</label>
<input type="text" id="username" name="username">
HTML forms can contain many types of controls depending on the kind of data you want to collect. Text fields are used for short input, textareas are good for longer messages, selects are useful for choosing from a list, and radio buttons or checkboxes work well for fixed options.
<form action="/register" method="POST">
<!-- Text input -->
<label for="name">Full Name:</label>
<input type="text" id="name" name="name" placeholder="Alice Smith" required>
<!-- Email input -->
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<!-- Password input -->
<label for="password">Password:</label>
<input type="password" id="password" name="password" minlength="8" required>
<!-- Number input -->
<label for="age">Age:</label>
<input type="number" id="age" name="age" min="1" max="120">
<!-- Date input -->
<label for="dob">Date of Birth:</label>
<input type="date" id="dob" name="dob">
<!-- Radio buttons -->
<p>Gender:</p>
<input type="radio" id="male" name="gender" value="male">
<label for="male">Male</label>
<input type="radio" id="female" name="gender" value="female">
<label for="female">Female</label>
<!-- Checkboxes -->
<p>Interests:</p>
<input type="checkbox" id="html" name="interests" value="html">
<label for="html">HTML</label>
<input type="checkbox" id="css" name="interests" value="css">
<label for="css">CSS</label>
<!-- Select dropdown -->
<label for="country">Country:</label>
<select id="country" name="country">
<option value="">-- Select --</option>
<option value="us">United States</option>
<option value="uk">United Kingdom</option>
<option value="in">India</option>
</select>
<!-- Textarea -->
<label for="bio">Bio:</label>
<textarea id="bio" name="bio" rows="4" cols="40" placeholder="Tell us about yourself..."></textarea>
<!-- File upload -->
<label for="avatar">Profile Photo:</label>
<input type="file" id="avatar" name="avatar" accept="image/*">
<!-- Range slider -->
<label for="rating">Rating: <span id="ratingVal">5</span></label>
<input type="range" id="rating" name="rating" min="1" max="10" value="5"
oninput="document.getElementById('ratingVal').textContent = this.value">
<!-- Hidden field -->
<input type="hidden" name="source" value="website">
<!-- Submit and Reset -->
<button type="submit">Register</button>
<button type="reset">Clear</button>
</form>
HTML provides many input types so the browser can offer better user interfaces and basic validation. For example, type="email" checks for email format, and type="date" often shows a date picker.
| Type | Description |
|---|---|
text | Single-line text input |
email | Email address - validates format automatically |
password | Masked text input |
number | Numeric input with optional min/max/step |
tel | Phone number |
url | URL - validates format |
date | Date picker |
time | Time picker |
datetime-local | Date and time picker |
checkbox | Tick box - multiple can be selected |
radio | Radio button - only one per group can be selected |
file | File upload |
range | Slider for numeric range |
color | Color picker |
hidden | Hidden field - not visible but submitted with form |
submit | Submit button |
reset | Reset all fields to default |
search | Search input with clear button |
The method attribute decides how the form data is sent. GET appends the form values to the URL, so it is often used for search forms and filters. POST sends the data in the request body, making it more suitable for registrations, logins, and larger or sensitive submissions.
HTML also includes extra elements that make forms more structured and user-friendly. Elements like <fieldset> and <legend> help group related fields, while attributes like placeholder, required, and autocomplete improve usability.
<form>
<fieldset>
<legend>Contact Details</legend>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="phone">Phone:</label>
<input type="tel" id="phone" name="phone">
</fieldset>
</form>
<form> element collects user input and sends it to a server using attributes like action and method.
GET for simple, shareable requests and POST for sensitive or larger form submissions.
multipart/form-data as the form encoding type.
The <form> tag groups form controls and defines how user input is submitted to a server.
GET sends form data in the URL and is useful for search or filter forms. POST sends data in the request body and is better for sensitive or larger submissions.
Labels make forms easier to use and improve accessibility because screen readers can describe inputs more clearly.
Use multipart/form-data when the form includes file uploads with <input type="file">.
Explore 500+ free tutorials across 20+ languages and frameworks.