Horje
href on a button 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>
href on a button
<!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>
button as href
<button onclick="location.href='http://www.example.com'" type="button">
         www.example.com</button>
href in button
<input type="button" onclick="location.href='https://google.com';" value="Go to Google" />




Html

Related
show timestamp as yyyy mm dd html angular Code Example show timestamp as yyyy mm dd html angular Code Example
html utf-8 Code Example html utf-8 Code Example
python selenium get html content Code Example python selenium get html content Code Example
add border to a div Code Example add border to a div Code Example
change color on the same string html Code Example change color on the same string html Code Example

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