4 digit input number 0000 to 2399

by Joe

HTML

<!DOCTYPE html>
<html>

  <body>

    <form>
      <input type="number" name="quantity" min="0000" max="2399">
      <input type="submit">
    </form>

  </body>

</html>