form method Attribute - Submit a form using the "post" method: - HTML CSS HTML Tag

HTML CSS examples for HTML Tag:form

Description

form method Attribute - Submit a form using the "post" method:

Demo Code

ResultView the demo in separate window

<!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>

Related Tutorials