HTML5 Search Input Type - HTML CSS HTML

HTML CSS examples for HTML:Form Input

Description

HTML5 Search Input Type

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html lang="en">
 <head> 
  <title>HTML5 Search Input Type</title> 
 </head> <!--from   w  w  w  .java2s  .c  o  m-->
 <body> 
  <form> 
   <label> Search Website: <input type="search" name="mysearch"> </label> 
  </form>   
 </body>
</html>

Related Tutorials