H71: Providing a description for groups of form controls using fieldset and legend elements

HTML Snippet Code
Scenario 1: Group of radio buttons are not grouped with fieldset and legend



<input type="radio" name="PM" id="debit" value="0"> <label for="debit">Debit Card</label><br> <input type="radio" name="PM" id="Credit" value="1"> <label for="Credit">Credit Card</label><br> <input type="radio" name="PM" id="online" value="2"> <label for="online">Online Banking</label><br>
Scenario 2: Group of checkboxes are not grouped with fieldset and legend


<input type="checkbox" id="photo" name="interests" value="ph"> <label for="photo">Photography</label><br /> <input type="checkbox" id="watercol" name="interests" checked="checked" value="wa"> <label for="watercol">Watercolor</label><br /> <input type="checkbox" id="acrylic" name="interests" checked="checked" value="ac"> <label for="acrylic">Acrylic</label>
Scenario 3: Group of text fields are not grouped with group label
Residential Address

Postal Address
Residential Address<br/> <label for="raddress">Address: </label> <input type="text" id="raddress" name="raddress" /> <label for="rzip">Postal/Zip Code: </label> <input type="text" id="rzip" name="rzip" /><br/> Postal Address<br/> <label for="paddress">Address: </label> <input type="text" id="paddress" name="paddress" /> <label for="pzip">Postal/Zip Code: </label> <input type="text" id="pzip" name="pzip" />