Show a date control:
The <input type="date">
defines a date picker.
The resulting value includes the year, month, and day.
Tip: Always add the <label>
tag for best accessibility practices!
The numbers in the table specify the first browser version that fully supports the element.
<input type="date">
Example:
HTML
<label for="birthday">Birthday:</label>
<input type="date" id="birthday" name="birthday">
Type: | Html |
Category: | Web Tutorial |
Sub Category: | HTML Tag |
Uploaded by: | Admin |