FILE UPLOAD BUTTON
Run
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
    <h2>File upload button (For Multiple files)</h2>
	<form action="/action_page.php">
	  <label for="file">Choose the file</label>
	  <input type="file" id="file" name="file" multiple>
	</form>

</body>
</html>