<button type="button">Click me</button>
<button type="submit">Send data</button>
Used only to triggering in-page functionality, rather than navigating to another document or section within the current page.
<a href="/fallback-url.html" role="button">Link</a>
<!-- This button is NOT active -->
<button aria-label="Favorite" aria-pressed="false">❤</button>
<!-- This button IS active -->
<button aria-label="Favorite" aria-pressed="true">❤</button>