Files
Randell Dawson 1494a50123 fix(guide): restructure curriculum guide articles (#36501)
* fix: restructure certifications guide articles
* fix: added 3 dashes line before prob expl
* fix: added 3 dashes line before hints
* fix: added 3 dashes line before solutions
2019-07-24 13:29:27 +05:30

843 B

title
title
Add Placeholder Text to a Text Field

Add Placeholder Text to a Text Field


Problem Explanation

placeholder is an attribute, not a tag. It can be used together with the attribute text of the input tag to create a text to visualize when the input box is empty.

 <input type=text placeholder="This is a placeholder text">

If you're stuck check for these issues:

  • you should add the placeholder attribute to the input tag already present in the code without removing anything; if by accident you removed or modified something remember that you can restart with a clean code by clicking reset all code button
  • the syntax is the same of every attribute: <tag attributeName="attributeValue" > and the value to insert is indicated by the challenge's instructions (check for typos).

Good luck!