HTML CSS examples for HTML:Form Input
HTML5 Search Input Type
<!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>