To select multiple files with file input with HTML, we add the multiple
attribute to the file input.
For instance, we write
<input type="file" name="filefield" multiple="multiple" />
to add the multiple
attribute to the file input to let us select multiple files from the file selection dialog.