HTML5 Input Type datetime is just like Input Type Date except it will allow visitor to select a date and time (with time zone). You can call this datetime picker using input type="datetime" on your input field.This will certainly reduce your development time so need nasty Javascript code.
HTML5 Input Type Email
A typical email address structure is [email protected] As you can never trust your website user so you have to check the email id when user submit the form. To solve this, HTML5 came with a news input type email. The syntax is as basic as a text input you just have to use type="email". Some […]