Horje
html button with link Code Example
href on a button
<button onclick="window.location.href='/page2'">Continue</button>
html button link
<button><a rel="nofollow" href='https://google.com' alt='Broken Link'>This is a button</a></button>
buton html href
<!-- if you are on Window : --> 
<button onclick="window.location.href='page2.html'">
  Button
</button>

<!-- if you are on linux or macOS : -->
<button onclick="location.href='page2.html'">
  Button
</button>
html button with link
<a rel="nofollow" href="https://www.google.com">
  <button>Go to Google</button>
</a>
add link behind a button in html
<!DOCTYPE html>
<html>
   <head>
      <title>Title of the document</title>
   </head>
   <body>
      <form>
         <input type="button" onclick="window.location.href = 'https://www.w3docs.com';" value="w3docs"/>
      </form>
   </body>
</html>
html button as link
<button class="btn btn-success" onclick="location.href='http://google.com';"> Google</button>
#open link from button




Html

Related
html left chevron symbol Code Example html left chevron symbol Code Example
h6 in html Code Example h6 in html Code Example
bootstrap radio Code Example bootstrap radio Code Example
play sound in javascript Code Example play sound in javascript Code Example
how to get the name of a html balise and pass it in onPress Code Example how to get the name of a html balise and pass it in onPress Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10