Build an Accessible Audio Controller - Step 6

Tell us what’s happening:

Build an Accessible Audio Controller - test cases failed

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <title>Accessible Controls</title>
  </head>
  <body>

    <h1>Audio Controls</h1>

    <button type="button">Play</button>

    <div>
      <span id="volume-label">Volume</span> <br>
      <span id="volume-description">Adjust the sound level</span><br>

<!-- User Editable Region -->

    <input type="range" min="0" max="100" value="50" aria-labelledby="volume-label volume-description">

<!-- User Editable Region -->

    </div>

  </body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36

Challenge Information:

Build an Accessible Audio Controller - Step 6

Welcome to the forum @Atisha!

It passed for me with your code.
Are you sure it´s not working? You may have to reset, than try again.

Thank you for your response.

All test cases have passed.

1 Like