+1 vote
in HTML by
What is the use of the required attribute in HTML5?

1 Answer

0 votes
by
It forces a user to fill text on the text field or text area before submitting the form. It is used for form validation.

Example:

Name: <input type="text" name="name" required>
...