Abe
0
Q:

html button with href

<a href="https://www.google.com">
  <button>Go to Google</button>
</a>
3
<button><a href='https://google.com' alt='Broken Link'>This is a button</a></button>
12
<button onclick="window.location.href='/page2'">Continue</button>
2
<form action="https://google.com">
    <input type="submit" value="Go to Google" />
</form>
5

<button 
  onclick="document.location='default.asp'">HTML Tutorial</button>
 
2
<a href="https://google.com" class="button">Go to Google</a> //*button link *//
0
<form method="get" action="/page2">
    <button type="submit">Continue</button>
</form>
2
onClick={() => {window.location.href="https://www.golfballs.com/"}}
0
a.button {
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;

    text-decoration: none;
    color: initial;
}
0

New to Communities?

Join the community