How do I link a button to another page in HTML? code example
Example 1: html button link
<button><a href='https://google.com' alt='Broken Link'>This is a button</a></button>
Example 2: button html link to another page
<input type="button" onclick="location.href='https://google.com';" value="Go to Google" />