+ 1
how to add date and time in html5?
2 Respuestas
+ 1
<input type="date" ...> <input type="time" ...>
OR
<input type="datetime-local" ...>
0
are you talking about form so there is input type date is available.
<form>
<input type="date" name="something" />
</form>
Happy Coding!