Curriculum
Course: HTML Basic
Login

Curriculum

HTML Basic

HTML Introduction

0/1

HTML Editors

0/1

HTML Attributes

0/1

HTML Paragraphs

0/1

HTML Formatting

0/1

HTML Comments

0/1

HTML Favicon

0/1

HTML Page Title

0/1

HTML Iframes

0/1

HTML Java Script

0/1

HTML File Paths

0/1

HTML Symbols

0/1
Text lesson

HTML Forms

Typically, the user input is transmitted to a server for further processing.

The <form> Element

The HTML <form> element is employed to generate an HTML form for user input:

<form>
.
form elements
.
</form>

The <form> element serves as a container for various types of input elements, including text fields, checkboxes, radio buttons, submit buttons, and more.

All the distinct form elements are discussed in detail in this chapter: HTML Form Elements.

The <input> Element

The HTML <input> element stands out as the most commonly utilized form element.

An <input> element can manifest in numerous formats, contingent upon the type attribute.

Here are several examples:

Type

Description

<input type=”text”>

Presents a single-line text input field

<input type=”radio”>

Presents a radio button (for selecting one of many choices)

<input type=”checkbox”>

Presents a checkbox (for selecting zero or more of many choices)

<input type=”submit”>

Presents a submit button (for submitting the form)

<input type=”button”>

Prsents a clickable button