how to add a button that leads to a link code example
Example 1: html button link
<button><a href='https://google.com' alt='Broken Link'>This is a button</a></button>
Example 2: href in button
<input type="button" onclick="location.href='https://google.com';" value="Go to Google" />