Edit in JSFiddle

<div data-role="page">
    <div data-role="content">
        <form>
            <input type="text" placeholder="input of type text" />
            <input type="password" placeholder="input of type password" />
            <input type="number" placeholder="input of type number" />
            <input type="number" pattern="[0-9]*" placeholder="input of type number with a pattern" />
            <input type="email" placeholder="input of type email" />
            <input type="url" placeholder="input of type url" />
            <input type="tel" placeholder="input of type tel" />
            <input type="time" />
            <input type="date" />
            <input type="month" />
            <input type="week" />
            <input type="datetime" />
            <input type="datetime-local" />
            <input type="color" />
        </form>
    </div>
</div>