Set input Upload File with Related Extension Filter - HTML CSS HTML Tag

HTML CSS examples for HTML Tag:input file

Description

Set input Upload File with Related Extension Filter

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
 </head> <!--from   w  ww .  j a  va  2  s . co  m-->
 <body> 
  <input type="file" accept="image/gif,image/jpeg,image/png">  
 </body>
</html>

Related Tutorials