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>
1<button onclick="location.href='http://www.example.com'" type="button">
2 www.example.com</button>
1<form method="get" action="/page2">
2 <button type="submit">Continue</button>
3</form>