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:
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 <Input Type = "File"> </ 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
Please Login to comment...