How to create a file upload button with HTML?


To create a file on upload button with HTML, the code is as follows −

Example

<!DOCTYPE html>
<html>
<head>
<h1>File upload button example</h1>
<p>Click on the "Choose File" button to upload a file:</p>
<form>
<input type="file" id="FILE" name="filename">
</form>
</body>
</html>

Output

The above code will produce the following output −

On clicking the “Choose file” button −

Updated on: 21-Nov-2023

966 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements