HTML
<input
type="range"
name="slider"
id="slider"
value="1"
min="1"
max="50"
step="1"
onInput="this.nextElementSibling.value = this.value">
<output>1</output>
Crea un slider que permita seleccionar un número entre 1-50 y lo muestre en vivo al cambiar. Requiere algo de Javascript.
<input
type="range"
name="slider"
id="slider"
value="1"
min="1"
max="50"
step="1"
onInput="this.nextElementSibling.value = this.value">
<output>1</output>