Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> </head> <body> <form action="/form/submit" method="get"> <label>Your Name:</label> <input type="text" name="first_name" /> <br/> <br/> <label>Your Surname:</label> <input type="text" name="last_name" /> <br/> <br/> <label>Enter Your E-Mail:</label> <input type="email" name="user_email" /> <br/> <br/> <input type="submit" value="Submit" /> </form> </body> </html>