html make button go to 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: button href
<a href="https://google.com" class="button">Go to Google</a> //*button link *//
Example 3: button html link to another page
<form action="https://google.com">
<input type="submit" value="Go to Google" />
</form>
Example 4: button href
a.button {
-webkit-appearance: button;
-moz-appearance: button;
appearance: button;
text-decoration: none;
color: initial;
}