1 2 3 4 5 6 7 8 9 10 11 12
<!DOCTYPE html> <html> <head> <title>Form submission</title> </head> <body> <form id="form1" action="standalone-pass.htm"> <span>Name: </span><input type="text" name="name" value="browser" /><br /> <input id="submitButton" type="submit" value="Submit Form" /> </form> </body> </html>