Dofactory.com
Dofactory.com
Earn income with your HTML skills
Sign up and we'll send you the best freelance opportunities straight to your inbox.
We're building the largest freelancing marketplace for people like you.
By adding your name & email you agree to our terms, privacy and cookie policies.

HTML <input> placeholder Attribute

The placeholder attribute adds a hint to an <input> element.

The hint appears as muted text inside the control and specifies what data to enter.

Example

#

A placeholder attribute on two <input> elements.
The placeholders specify the data that the input boxes expect.





<form action="/tutorial/action.html">
  <input type="text" name="firstname" placeholder="Enter first name"><br /> <br />
  <input type="text" name="lastname" placeholder="Enter last name"><br /> <br />

  <input type="submit">
</form>

Using placeholder

The placeholder attribute adds a hint to the input element.

The hint appears as muted text inside the control. It disappears when the user starts entering data.

Placeholders only apply to these input types:


Syntax

<input placeholder="text">

Values

#

Value Description
text String value. The hint text.

Browser support

Here is when placeholder support started for each browser:

Chrome
10.0 Mar 2011
Firefox
4.0 Mar 2011
IE/Edge
10.0 Sep 2012
Opera
11.0 Dec 2010
Safari
5.0 Jun 2010

You may also like

 Back to <input>

Last updated on Sep 30, 2023

Earn income with your HTML skills
Sign up and we'll send you the best freelance opportunities straight to your inbox.
We're building the largest freelancing marketplace for people like you.
By adding your name & email you agree to our terms, privacy and cookie policies.

Guides