Tell us what’s happening:
I’ve added the aria-labelled attribute but it says it doesn’t work
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 aria-labelledby="volume-label volume-description" type="range" min="0" max="100" value="50">
<!-- User Editable Region -->
</div>
</body>
</html>
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36
Challenge Information:
Build an Accessible Audio Controller - Step 6