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