Accessibility: Label Element

Example 3.10 - Form Labels - Example 3.10

 <form method="get" action="https://cscie12.dce.harvard.edu/echo">
   <p>Do you like to watch NCAA basketball?
   </p>
   <label>
     <input type="radio" name="basketball" value="Y"/>
Yes   </label>
   <br/>

   <label>
     <input type="radio" name="basketball" value="N"/>
No   </label>
   <br/>

   <input type="submit"/>

 </form>

Do you like to watch NCAA basketball?