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 […]
HTML5 Input Type Date
HTML5 Input Type Date will allows the user to select a date. Previously this is done by Javascript date picker. To make you life easier you can now call this date picker by simply using this type="date" on your input field. May be looks like this way : [php]<input type="date" name="birthday" />[/php] Currently the latest […]