Answers for "set min and max value in input html"

5

min length input html

<form action="/action_page.php">
  <label for="password">Password:</label>
  <input type="password" id="password" name="password" minlength="8"><br><br>
  <input type="submit" value="Submit">
</form>
Posted by: Guest on November-19-2020
0

min max value for inout

<input type="number" min="1" max="999" />
Posted by: Guest on April-09-2021

Browse Popular Code Answers by Language