Computer Science, asked by armanmahi6957, 1 year ago

which input type defines a slider control?

Answers

Answered by Anonymous
3
In HTML:

<input type=”range”>

Defines a control for entering a number whose exact value is not important (like a slider control). Default range is from 0 to 100
Answered by topanswers
1

Answer:

Range is the input type that defines a slider control.

Explanation:

There are many input types like button, search, color, date, month, hidden, radio, password, etc., in HTML.

For defining a slider control in which the accurate value entered is not of much importance,  then input type 'range' can be used.

An example:

<input type="range" name="slide" min="0" max="50">

Similar questions