diff --git a/challenges/01-responsive-web-design/basic-html-and-html5.json b/challenges/01-responsive-web-design/basic-html-and-html5.json index 7d202abb09d..8a548aa2f86 100644 --- a/challenges/01-responsive-web-design/basic-html-and-html5.json +++ b/challenges/01-responsive-web-design/basic-html-and-html5.json @@ -1769,7 +1769,8 @@ "Each of your radio buttons should be nested within its own label element.", "All related radio buttons should have the same name attribute.", "Here's an example of a radio button:", - "<label><input type=\"radio\" name=\"indoor-outdoor\"> Indoor</label>", + "
<label for=\"indoor\">
<input type=\"radio\" name=\"indoor-outdoor\">Indoor
</label>
", + "It is considered best practice to set the for attribute for assistive technologies to be able to link the relationship between the label and the child elements such as an input in this case.", "
", "Add a pair of radio buttons to your form. One should have the option of indoor and the other should have the option of outdoor. Both should share the name attribute of indoor-outdoor." ],