how to make a button link to another tab in html code example
Example 1: make sure href open in new tab
target="_blank"
Example 2: button html link to another page
<input type="button" onclick="location.href='https://google.com';" value="Go to Google" />