1 2 3 4 5 6 7 8 9 10 11 12 13 14
<!DOCTYPE html> <html lang="en"> <head> <title>Form Example</title> </head> <body> <h1>Join Our Newsletter</h1> <form method="get"> E-mail: <input type="text" name="email" id="email"><br><br> <input type="submit" value="Sign Me Up!"> <input type="reset"> </form> </body> </html>