Many new input elements are introduced in the html5 specification. Here you will find a list of these elements and how these elements look in Chrome. The tags are tested in SRWare Iron browser which is based on Chrome.
If an element is not recognized by the browser, it will be treated as <input type="text">.
Some attributes are also added in html5 such as "autofocus", "placeholder", "required" etc.
The <form> element has an attribute named "novalidate". If you don't want the browser to validate the values of input elements, you can use this attribute.
1) Email: <input type="email" placeholder="abc@qoncious.com" autofocus>
2) URL: <input type="url" name="url">
3) Search: <input type="search" placeholder="Search">
4) Number: <input type="number" min="-10" max="10" step="2" value="0">
5) Range: <input type="range" min="-10" max="10" step="2" value="0">
6) Date time related: These are not well supported by all browsers.
<input type="date">
<input type="month">
<input type="week">
<input type="time">
7) Color picker: <input type="color">