Help creating an action to view certain url

Help creating an action to view certain url

Hi,

Was wondering if someone could help me create an action with this bit of code?

There is a range of 5, I would like to redirect to to a specific url when you select 1, 2, 3, 4 or 5.

Would appreciate any guidance on this.

Thanks.


<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>

<div data-role="page">
  <div data-role="header">
    <h1>Choose your risk level</h1>
  </div>

  <div data-role="main" class="ui-content">
    <form method="post" action="demoform.asp">
      <div data-role="rangeslider">
        <label for="price-min">Risk level:</label>
        <input type="range" name="price-min" id="price-min" value="0" min="0" max="0">
        <label for="price-max">Price:</label>
        <input type="range" name="price-max" id="price-max" value="0" min="0" max="5">
      </div>

      </form>
  </div>
</div> 

</body>
</html>