input type decimal in html code example
Example 1: range in decimals html
<input type="range" name="points" min="1" max="10"
step="0.25" onchange="alert(this.value)"/>
Example 2: input type that allows float number
<input type="number" step="0.01">