button with redirect code example
Example 1: js onclick redirect
<button onclick="location.href='www.yoursite.com'">Click Me</button>
Example 2: how to make a button in html go to another address
<a href="google.com">
<button>Visit Google</button>
</a>