Which HTML attribute ensures a user cannot leave a form input field empty before submitting the form?
What attribute should you use on an input field to prevent users from typing more than 20 characters?
Which attribute allows you to specify a regular expression that an input value must match for validation?
When you want to make an input field uneditable and ensure its value is not submitted with the form, what attribute should you use?
What is the key difference between the 'readonly' and 'disabled' attributes on an input field?
If you want to ensure a user enters an email address and benefit from browser validation, which input type value should you set?
For an input where users can select more than one file to upload, which attribute should be added?
Which input attribute displays a hint or example text inside the field, which disappears once the user starts entering their own text?
In a validation scenario, what does the 'title' attribute do on an input field that has a 'pattern' specified?
How can you prevent a form from performing its default HTML validation when submitted?