Open In App

HTML | minlength Attribute

The HTML minlength attribute is used to specify the minimum number of characters (as UTF-16 code) the user enters into the input field or text area. Integer value must start with 0 or higher.

Syntax: 



<Element minlength="numeric">

Applicable: 

Attribute Value:  



Example:  




<!DOCTYPE html>
<html>
<head>
    <title>
        HTML | minlength Attribute
    </title>
</head>
<body style="text-align: center;"
    <h1 style="color:green;">
        GeeksForGeeks
    </h1>
    <h2>minlength attribute</h2>
    <form action="">
        Username:
        <input type="text"
                name="usrname"
                minlength="10">
        <br><br>
        Password:
        <input type="text"
                name="password"
                maxlength="10">
        <br><br>
        <input type="submit"
                value="Submit">
    </form>
</body>
</html>

Output:  

Supported Browsers: The browser supported by HTML minlength attribute are listed below:  


Article Tags :