HTML5 Web Forms

Web forms are more important in dynamic websites. Many cool things are introduced in HTML5.
I am sure you will get really excited with these new stuffs.

<input type="email">
Automatic email validation is there while submitting the page. No need a single line of javascript.


<input type="date">  

This is so cool. Date calendar will display automatically. I still remember the days where I search for javascript libraries and integrate in my page to show a calender :)


<input type="range" min="0" max="10">
This is slider control where you can navigate from min to max values


<input type="color">
Just test and see what it happens if you click on it. The color picker will be open.

Comments