CodeLab
Tutorials For Everyone
Run
<!DOCTYPE html> <html> <head> <title>HTML Form File Select Control Example</title> </head> <body> <h3>HTML Form File Select Control Example</h3> Please drop your Cover Letter and Resume. <form action='/form-submit/'> <label for="cover-letter">Select Your Cover Letter:</label> <input type="file" id="cover-letter" name="cover-letter" /><br /> <label for="resume">Select Your Resume:</label> <input type="file" id="resume" name="resume" /><br /> <input type="submit" value="Submit Application"> </form> </body> </html>