Open In App

HTML | <input type=”file”>

Last Updated : 02 Jun, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

The HTML <input type=”file”> is used to specify the file select field and add a button to choose a file for upload to the form. 

Syntax:

<input type="file"> 

Example: 

HTML




<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML input type file
    </title>
     
    <style>
        h1 {
            color: green;
        }
        h3 {
            font-family: Impact;
        }
        body {
            text-align: center;
        }
    </style>
</head>
 
<body>
    <h1>
        GeeksforGeeks
    </h1>
     
    <h3>
        HTML &lt;Input Type = "File"&gt;
    </h3>
 
    <input type="file" id="myFile">
     
    <p id="submit_text"></p>
</body>
 
</html>                   


Output:

  

Supported Browsers: The browsers supported by <input type=”file”> are listed below:

  • Google Chrome 1.0 and above
  • Edge 12 and above
  • Internet Explorer
  • Firefox 1.0 and above
  • Safari 1.0 and above
  • Opera 11.0 and above

Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads