Open In App

HTML | <form> enctype Attribute

The HTML <form> enctype Attribute is used to specify that data that will be present in form should be encoded when submitting to the server. This type of attribute can be used only if method = “POST”

Syntax:



<form enctype="value"> 

Attribute Value: This attribute contains three value which are listed below:

Example: This Example illustrates the use of enctype attribute in <form> element. 






<!DOCTYPE html>
<html>
 
<head>
    <title>Form enctype attribute</title>
</head>
 
<body style="text-align: center">
    <h1 style="color: green">GeeksforGeeks</h1>
    <h2>Form enctype Attribute</h2>
    <form action="#"
          method="post"
          enctype="multipart/form-data">
        First name:
        <input type="text"
               name="fname">
        <br> Last name:
        <input type="text"
               name="lname">
        <br> Address:
        <input type="text"
               name="Address">
        <br>
        <input type="submit"
               value="Submit">
    </form>
</body>
 
</html>

Output :

  

Supported Browsers: The browsers supported by <form> enctype Attribute are listed below:

Article Tags :