Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

How to specify the response page after submitting the form using HTML5 ?

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

In this article, we will specify the response page after submitting the form by using the action attribute in the <form> element in the document. This property is used to specify the URL page or destination of the form data that to be sent to the server after submission of the form. It can be used in the “form” element.

Syntax:

<form action="URL">

Example:




<!DOCTYPE html>
<html>
  
<head>
    <title>
        How to Specify where to display the
        response that is received after 
        submitting the form using HTML5?
    </title>
</head>
  
<body>
    <h1>GeeksforGeeks</h1>
  
    <h2>
        How to Specify where to display the
        response that is received after 
        submitting the form using HTML5?
    </h2>
  
    <form action="test.php" method="post" id="users">
  
        <label for="username">
            Username:
        </label>
  
        <input type="text" name="username" id="Username">
  
        <br>
  
        <label for="password">
            Password:
        </label>
        <input type="password" name="password">
    </form>
    <br>
  
    <button onclick="myGeeks()">
        Submit
    </button>
    <br><br>
  
    <b>
        After Submitting the form-data will sent
        to the "test.php" page on the server.
    </b>
</body>
  
</html>

Output :

Supported Browsers are listed below:

  • Google Chrome
  • Internet Explorer
  • Firefox
  • Opera
  • Safari

My Personal Notes arrow_drop_up
Last Updated : 21 Jun, 2020
Like Article
Save Article
Similar Reads
Related Tutorials