HTML CSS examples for HTML:Form
Example of file select form control
<!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>