test-range.html (416B)
1 <!doctype html> 2 <html> 3 <head> 4 <meta charset="utf-8" /> 5 </head> 6 <body> 7 <input type="range" aria-label="Rating" min="1" max="10" value="4" /><input 8 type="range" 9 aria-label="Stars" 10 min="1" 11 max="5" 12 step="0.5" 13 value="4.5" 14 /><input 15 type="range" 16 aria-label="Percent" 17 min="0" 18 max="1" 19 step="0.01" 20 value="0.83" 21 /> 22 </body> 23 </html>