Open In App

HTML | <input type=”file”>

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: 




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

Article Tags :