Input Types (text, email, password)

HTML input types define what kind of data a user can enter in a form. Different input types help control and validate user input.

What are Input Types

Input types are used inside the <input> tag to specify the type of information a user should enter, such as text, email, or password.

Text Input Type

The text input type is used to take general text input like name or city.

Example of Text Input

<input type=”text” placeholder=”Enter your name”>

Email Input Type

The email input type is used to take email addresses. It also checks if the format is valid.

Example of Email Input

<input type=”email” placeholder=”Enter your email”>

Password Input Type

The password input type is used to take sensitive information like passwords. It hides the text while typing.

Example of Password Input

<input type=”password” placeholder=”Enter your password”>

Difference Between Input Types

Text input is used for normal text.
Email input is used for email addresses with validation.
Password input hides the characters for security.

Why Input Types are Important

Input types improve user experience and help ensure that correct data is entered in forms.

Summary

HTML input types like text, email, and password help collect different types of user information in a structured and secure way.

Home » HTML Intermediate > Forms & User Input > Input Types (text, email, password)