Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> </head> <body> <h2>The method Attribute With the Post Method</h2> <form action="/form/submit" target="_blank" method="POST"> Name:<br> <input type="text" name="name" value="Tom"> <br> Surname:<br> <input type="text" name="surname" value="Brown"> <br> Age:<br> <input type="number" name="age" value="21"> <br><br> <input type="submit" value="Submit"> </form> </body> </html>