HTML CSS examples for HTML Tag:form
form method Attribute - Submit a form using the "post" method:
<!DOCTYPE html> <html> <body> <form action="/action_page.php" method="post" target="_blank"> First name: <input type="text" name="fname"><br> Last name: <input type="text" name="lname"><br> <input type="submit" value="Submit"> </form><!--from w ww. j av a 2 s . c om--> </body> </html>