EN
HTML - date input
3 points
In this article, we would like to show you how to create date input in HTML.
Quick solution:
xxxxxxxxxx
1
<input type="date" name="input-name" />
In this example, input date is limited by min and max value.
xxxxxxxxxx
1
2
<html>
3
<body>
4
<input type="date"
5
name="event-date"
6
value="2021-02-18"
7
min="2021-01-01"
8
max="2021-03-01" />
9
</body>
10
</html>