HTML5 search input type examples




HTML5 search input type examples

<!DOCTYPE html>
<html>
   <head>
      <title>HTML5 search input type examples</title>
   </head>
   <body>
      <form>
         <label>
            Search Website: <input type="search" name="mysearch">
         </label>
      </form>
   </body>
</html>

Output