button
element
button
element, no text
<button id="btn-01" type="button"></button>
button
element, with text
<button id="btn-02" type="button">Test</button>
button
element,
with disabled
attribute
<button id="btn-03" type="button" disabled="">Test</button>
button
element,
with accessible name from aria-label
attribute
<button id="btn-04" type="button" aria-label="Aria Label Test"></button>
button
element,
with text and aria-label
attribute
<button id="btn-05" type="button" aria-label="Aria Label Text">Visible Text</button>