inputs
by ibroom
HTML
<form>
<input type="number" step="0.01">
<input type="range" min="3" max="15">
<input type="tel" id="phone" name="phone" pattern="^\s*\(?(020[7,8]{1}\)?[ ]?[1-9]{1}[0-9{2}[ ]?[0-9]{4})|(0[1-8]{1}[0-9]{3}\)?[ ]?[1-9]{1}[0-9]{2}[ ]?[0-9]{3})\s*$">
<input type=submit >
</form>
CSS
input {
display: block;
margin-bottom: 20px;
}