Context: A button that expands and collapses a section of text.
Bad code
<button class="panel-heading" tabindex="0" href="#collapse0" aria-expanded="true">
  <legend> Industries Served </legend>
</button>Issues and how to fix them
- legendis not allowed as a child of any other element than- fieldset.
 (HTML spec for legend)
- You don’t need the tabindexattribute if you use abutton. HTML buttons are focusable by default.
- hrefattribute is not allowed on the- buttonelement.
 (HTML spec for button)
Good code
<button class="panel-heading" aria-expanded="true">
  Industries Served
</button>