today for my first project i worked on building an accessible audio controller very small project that took about 10 minutes i used spans and input elements nested in a div element i also added id’s to the span elements and type, min, max, and value attributes on the input element i will add pictures below.



<button type="button">Play</button>
button element i forgot to add in description above also added a type attribute to this.
<input type="range" min="0" max="100" value="50"
aria-labelledby="volume-label volume-description">
also added range, value, aria-labelledby attributes to this input element.

Leave a Reply