form_blank.html (415B)
1 <!doctype html> 2 <html> 3 <head> 4 <meta charset="utf-8" /> 5 <title>Forms</title> 6 <meta name="viewport" content="minimum-scale=1,width=device-width" /> 7 </head> 8 <body> 9 <form 10 id="form1" 11 name="form1" 12 action="form_blank.html" 13 method="get" 14 target="_blank" 15 > 16 <input type="text" id="search" value="foo" /> 17 <input type="submit" /> 18 </form> 19 </body> 20 </html>