Open In App

HTML | <input> min Attribute

The HTML min Attribute is used to specify the minimum value for an input field. It can be used together with the max attribute to create a range of values. It can be used with the many input fields such as number, range, date, datetime, datetime-local, month, time and week. Syntax: 

<input min="number|date">

Attribute Values: 



Example: This Example illustrates the use of min attribute in <input> element. 




<!DOCTYPE html>
<html>
 
<body style="text-align:center;">
 
    <h1 style="color:green;">
            GeeksForGeeks
        </h1>
 
    <h2>
      HTML | min Attribute in Input Field
  </h2>
    <form id="myGeeks">
        <input type="number"
               id="myNumber"
               step="5"
               name="geeks"
               placeholder="multiples of 5"
               min="10">
    </form>
    <br>
    <br>
    <p style="font-size:20px;">
      The minimum value for an input field is 10.
  </p>
</body>
 
</html>

Output:



  

Supported Browsers: The browser supported by HTML <Input>min Attribute are listed below:

Article Tags :