Range Element
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<form>
<div>
<lable for="Voloume">Voloume:</lable>
<input type="range" min="0" max="100">
</div>
<hr>
Or
<hr>
<div>
<lable for="Voloume">Voloume:</lable>
<input type="range" min="0" max="100" step="10">
</div>
</form>
</body>
</html>

Comments
Post a Comment