- 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 Element
The <form> element in HTML is used to create a container for user input elements, such as text fields, checkboxes, radio buttons, submit buttons, and more. It enables users to input data which can be submitted to a server for processing. Here's an overview of the <form> element:
Basic Syntax:
<form action="/submit_form" method="post">
<!-- Input fields go here -->
</form>
- The action attribute specifies the URL where the form data will be sent when submitted.
- The method attribute specifies the HTTP method to be used when submitting the form. It can be GET or POST.
Input Fields
Various types of input fields can be used within a form to collect different types of data.
Text Input:
<label for="username">Username:</label>
<input type="text" id="username" name="username">
Password Input:
<label for="password">Password:</label>
<input type="password" id="password" name="password">
Radio Buttons:
<input type="radio" id="male" name="gender" value="male">
<label for="male">Male</label><br>
<input type="radio" id="female" name="gender" value="female">
<label for="female">Female</label><br>
Checkboxes:
<input type="checkbox" id="car" name="vehicle1" value="car">
<label for="car">I have a car</label><br>
<input type="checkbox" id="bike" name="vehicle2" value="bike">
<label for="bike">I have a bike</label><br>
Select Dropdown:
<label for="cars">Choose a car:</label>
<select id="cars" name="cars">
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="mercedes">Mercedes</option>
<option value="audi">Audi</option>
</select>
Summary:
The <form> element in HTML provides a structured way to collect user input on web pages. It serves as a container for input fields and allows users to submit data to a server for further processing. Understanding how to use the <form> element and its attributes is essential for building interactive web forms.