Skip to:
All of the form input items that are checkboxes are missing a corresponding label.
This is an accessibility issue. WebAIM has some advice http://webaim.org/techniques/forms/controls
Either the Encapsulated <label><input>About</label> method or For method <input name="this"> <label for="this">About</label> would be fine, it looks like the For method is used elsewhere on the page.
All of the form input items that are checkboxes are missing a corresponding label.
This is an accessibility issue. WebAIM has some advice http://webaim.org/techniques/forms/controls
Either the Encapsulated <label><input>About</label> method or For method <input name="this"> <label for="this">About</label> would be fine, it looks like the For method is used elsewhere on the page.