DEV Community

Discussion on: Tell us what your top unpopular tech opinion is 😈

 
gmartigny profile image
Guillaume Martigny

I'm not an accessibility expert. But the simpler the better for screen-reader.

<form action="page.html">
    <button type="submit">Click</button>
</form>

vs

<a href="page.html">Click</a>

What's make you prefer the former one ?