HTML <input> Tag with the 'minlength' Attribute

<form name="myForm" action="https://www.PuStudy.Com/resources/html-forms-action.html">
	
<input minlength="5" name="myField">

<button>Submit</button>

</form>

The above example demonstrates usage of the <input> element with the minlength attribute.

The minlength attribute allows you to restrict the length of the value that the user can input. Specifically, it allows you to specify a minimum number of characters that the user can input.

You can also use maxlength to specify a maximum length.

Note that at the time of writing, the minlength attribute was new to HTML and had very little browser support.