Inputs
HTML
<!-- #On iOS devices, using the pattern attribute with a value of [0-9]* will bring up the numeric keypad without '-'
-->
<div> Input + number + pattern</div>
<input pattern="[0-9]*" type="number">
<div> Input + number + pattern d</div>
<input type="text" pattern="\d*" />
<div> Input + text </div>
<input type="text">
<div> Input + text + pattern</div>
<input type="text">