How to use min attributes in input type date to specify minimum date value in HTML

1 Answer

0 votes
<!DOCTYPE html>
<html>
<body>
 
<form action="">
<input type="date" name="bday" min="2018-12-31"><br /><br />
</form>

<input type="submit">
 
</body>
</html>

 



answered Jan 6, 2019 by avibootz
...