JSFiddle - React, Tailwind, and code Playground

by mirontoli

HTML

<!-- 
http://www.bipinjoshi.net/articles/e421a206-cb68-428b-939b-9e42a2feeec3.aspx 
-->   

    <p>Email :</p>
    <input type="email" name="email" />

    <p>URL :</p>
    <input type="url" name="url" />

    <p>Telephone No. :</p>
    <input type="tel" name="tel" />

    <p>Number :</p>
    <input type="number" name="number" min="1" max="10" step="2"/>

    <p>Range :</p>
    <input type="range" name="range" min="1" max="10" step="2" />

    <p>Date :</p>
    <input type="date" name="date" />

    <p>Month :</p>
    <input type="month" name="month" />

    <p>Week :</p>
    <input type="month" name="week" />

    <p>UTC Date Time :</p>
    <input type="datetime" name="utcdatetime" />

    <p>Local Date Time :</p>
    <input type="datetime-local" name="localdatetime" />

    <p>Time :</p>
    <input type="time" name="time" />