CodeLab
Tutorials For Everyone
Run
<!DOCTYPE html> <html> <head> <title>HTML Form Button Control Example</title> </head> <body> <h3>HTML Form Button Control Example</h3> Please type in your own values in the below text fields. <form method='get' action='/form-submit/'> <div><label for='full-name'>Your Name</label></div> <div><input type="text" name="full-name" value="John Doe" /></div> <div><label for='email-address'>Your Email Address</label></div> <div><input type="email" name="email-address" value="johndoe@example.com" /></div> <div><input type="submit" value="Submit" /> <input type="submit" value="Reset" /></div> </form> </body> </html>