Sean Mgd
Sean Mgd

Reputation: 21

How to get the calendar select in HTML?

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

Answers (1)

kylew
kylew

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

Related Questions