- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to specify that a user can enter more than one value in HTML?
Use the multiple attribute in HTML to specify a user can enter more than one value.
Example
You can try to run the following code to implement multiple attribute −
<!DOCTYPE html> <html> <head> <title>Upload multiple files</title> </head> <body> <form> <input type = "file" name = "name" multiple><br><br> After uploading multiple files, click Submit.<br> <input type = "submit" value = "Submit"> </form> </body> </html>
- Related Articles
- How to specify that the details should be visible to the user in HTML?
- How to specify a minimum value in HTML?
- How to specify that the target will be downloaded when a user clicks on the hyperlink in HTML?
- How to specify "ENTER" button functionality in Selenium WebDriver code?
- Using more than one CSS classes for an element in HTML
- Can we declare more than one class in a single Java program?
- Can I define more than one public class in a Java package?
- How to specify that the element is read-only in HTML?
- How can we add FOREIGN KEY constraints to more than one fields of a MySQL table?
- How to sort more than one column at a time in MySQL?
- How to get a value more than a particular value from varchar column in MySQL?
- How to specify citation in HTML?
- How to specify that an element is not yet relevant in HTML?
- How to pass more than one header in a request in Rest Assured?
- Linear magnification (m) produced by a rear view mirror fitted in vehicles:(a) is equal to one (b) is less than one(c) is more than one (d) can be more less than one depending on the position of object

Advertisements