A form containing a slider that has a maximum value of 100, a minimum of 0 and moves in steps of 10

PHOTO EMBED

Wed Oct 06 2021 00:04:27 GMT+0000 (Coordinated Universal Time)

Saved by @ianvalentino #html #forms

<form action="/processing.html" method="GET">
  <label for="mystery">What gets rendered?</label>
  <input type="range" id="mystery" name="mystery" min="0" max="100" step="10">
</form>
content_copyCOPY

https://www.codecademy.com/