HTML | accept Attribute
This attribute specifies the type of file that the server accepts. This attribute can be used with <input> element only. This attribute is not used for validation tool because file uploads should be validated on the Server.
Syntax:
<input accept = "file_extension">
Attribute: This attribute is associated with <input> elements only.
Example:
<!DOCTYPE html> <html> <head> <title>accept attribute</title> <style> body { text-align:center; } h1 { color:green; } </style> </head> <body> <h1>GeeksforGeeks</h1> <h2>accept attribute</h2> <form action=" "> <input type="file" name="picture" accept="image/*"> <input type="submit"> </form> </body> </html> |
Output:

Supported Browsers: The browser supported by accept attribute are listed below:
- Google Chrome 8.0
- Internet Explorer 10.0
- Firefox 4.0
- Opera 15.0
- Apple Safari 6.0
Recommended Posts:
- HTML | <input> accept Attribute
- HTML | accept-charset Attribute
- HTML | <form> accept-charset Attribute
- HTML | DOM Input FileUpload accept Property
- HTML | <img> src Attribute
- HTML | low Attribute
- HTML | value Attribute
- HTML | dir Attribute
- HTML | min Attribute
- HTML | <li> value Attribute
- HTML | <a> rel Attribute
- HTML | <map> name Attribute
- HTML | for Attribute
- HTML | <img> alt Attribute
- HTML | required Attribute
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.
Improved By : shubham_singh



