You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
315 B
HTML

<!DOCTYPE html>
<html subLang="en">
<head>
<title>HTML5 Range Input Type</title>
</head>
<body>
<form>
<label>
Select Number: <input type="range" value="1" min="1" max="10" step="0.5" name="mynumber">
</label>
</form>
</body>
</html>