1<button><a href='https://google.com' alt='Broken Link'>This is a button</a></button>
1<!-- if you are on Window : -->
2<button onclick="window.location.href='page2.html'">
3 Button
4</button>
5
6<!-- if you are on linux or macOS : -->
7<button onclick="location.href='page2.html'">
8 Button
9</button>