Computer >> Computer tutorials >  >> Programming >> HTML

How to specify where to send the form-data when a form is submitted in HTML?


Use the action attribute to add the file, where you want to reach after clicking Submit button. You can also add an email to send the data to that email-id.

Example

You can try to run the following code to set where to send the form-data when a form is submitted in HTML −

<!DOCTYPE html>
<html>
   <body>
      <h2>Student Contact Form</h2>
      <form action = "mailto:[email protected]" method = "post" enctype = "text/plain">
         Student Name:<br><input type = "text" name = "sname"> <br>
         Student Subject:<br><input type = "text" name = "ssubject"><br>
         <input type = "submit" value = "Send">
      </form>
   </body>
</html>