Reputation: 21
I am looking for a standard calendar to select a date (and every time actualized by the day of today). In HTML, I know that there is something like this, when clicking on the small calendar icon. but I don't find it. Thanks
Upvotes: 0
Views: 3422
Reputation: 150
If you are referring to the "date" input type, simply use something like:
<input type="date" name="date" id="dateinput" >
as part of a form.
Upvotes: 1