css button a href code example
Example 1: href in button
<input type="button" onclick="location.href='https://google.com';" value="Go to Google" />
Example 2: button as href
<button onclick="location.href='http://www.example.com'" type="button">
www.example.com</button>