- HTML Tutorial
- HTML Introduction
- HTML Editors
- HTML Basic
- HTML Comments
- HTML Elements
- HTML Attributes
- HTML Id & Classes
- HTML Skeletal Tags
- HTML Heading Tags
- HTML Paragraph Tag
- HTML Line Break Tag
- HTML Pre Tag
- HTML Anchor Tag
- HTML Image Tag
- HTML Horizontal Line Tag
- HTML Inline & Block
- HTML Inline
- HTML Block
- HTML LInks
- HTML Images
- HTML Formatting
- HTML Head
- HTML Head
- HTML Title
- HTML Meta Elements
- HTML Favicon
- HTML Style
- HTML List
- HTML Lists
- HTML Unordered List
- HTML Ordered List
- HTML Description List
- HTML Table
- HTML Tables
- HTML Table Headers
- HTML Table Styling
- HTML Table Colgroup
- HTML Form
- HTML Forms
- HTML Form Elements
- HTML Form Attributes
- HTML Input Types
- HTML Input Attributes
- HTML Form Actions
- HTML Semantic
- HTML Semantics
- HTML Graphics & Media
- HTML Canvas
- HTML SVG
- HTML Video & Audio
- HTML Plug-ins
- iFrames in HTML
- HTML Miscellaneous Tags
- HTML Code Tag
- HTML Entities
- HTML Quotation
- HTML Global Attributes
- HTML Obsolete Tags
- HTML Emojis
- HTML Symbols
- HTML Events
- HTML Colors
HTML Form Attributes
HTML form attributes enhance the functionality and behavior of forms. These attributes are added to <form>
and <input>
elements to control their actions, validation, and interaction.
Key HTML Form Attributes
1. action
Specifies the URL where the form data will be sent after submission.
<form action="/submit-data">
<input type="text" name="username">
<button type="submit">Submit</button>
</form>
Output: When submitted, data is sent to /submit-data
.
2. method
Defines the HTTP method (GET
or POST
) to use when sending the form data.
<form action="/submit-data" method="POST">
<input type="text" name="username">
<button type="submit">Submit</button>
</form>
Output: Form data is sent via the POST method.
3. enctype
Specifies the encoding type for form data. Common values:
application/x-www-form-urlencoded
(default)multipart/form-data
(for file uploads)
<form action="/upload" method="POST" enctype="multipart/form-data">
<input type="file" name="file">
<button type="submit">Upload</button>
</form>
Output: Enables file uploads.
4. autocomplete
Controls whether the browser should autocomplete form fields.
<form action="/login" autocomplete="off">
<input type="text" name="username">
<input type="password" name="password">
<button type="submit">Login</button>
</form>
Output: Autocomplete is disabled.
5. novalidate
Disables HTML5 form validation.
<form action="/submit-data" novalidate>
<input type="email" name="email" required>
<button type="submit">Submit</button>
</form>
Output: Allows form submission without validation.
6. target
Specifies where to display the response after submitting the form. Common values:
_self
(default)_blank
(new tab)
<form action="/submit-data" target="_blank">
<input type="text" name="username">
<button type="submit">Submit</button>
</form>
Output: Opens the response in a new tab.
7. name
Identifies the form, allowing easy access via JavaScript.
<form name="userForm">
<input type="text" name="username">
</form>
<script>
console.log(document.userForm);
</script>
Output: Logs the form element.
8. id
Uniquely identifies the form in the document.
<form id="loginForm">
<input type="text" name="username">
</form>
<script>
const form = document.getElementById('loginForm');
console.log(form);
</script>
Output: Logs the form element.
Summary
HTML form attributes control form behavior, interaction, and submission. Key attributes include action
, method
, enctype
, and autocomplete
, among others. Using these attributes effectively enhances form functionality and user experience.