Set placeholder text for search input field - HTML CSS HTML Tag

HTML CSS examples for HTML Tag:input placeholder

Description

Set placeholder text for search input field

Demo Code

ResultView the demo in separate window

<html>
 <head></head> 
 <body> 
  <p> </p> 
  <form> 
   <input name="search" type="search" placeholder="Input type is search"> 
  </form>  
 </body><!--from   w ww . j ava 2 s.com-->
</html>

Related Tutorials