Example of file select form control - HTML CSS HTML

HTML CSS examples for HTML:Form

Description

Example of file select form control

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html lang="en">
 <head> 
  <title>Example of file select form control</title> 
 </head> <!--   ww w  .j  av  a 2  s. co  m-->
 <body> 
  <form method="post" action="action.php"> 
   <label for="file-select">Select File:</label> 
   <input type="file" name="upload" id="file-select"> 
  </form>   
 </body>
</html>

Related Tutorials