Horje
how to make a button link in html Code Example
how to make button link to other page
//To make button work like a tag do this:
<button type="button" onclick="window.location.href='index.html'">Go Back</button>
html button link
<button><a rel="nofollow" href='https://google.com' alt='Broken Link'>This is a button</a></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
how to make a button link in html
<button <button="">
<a rel="nofollow" href="URL here"
>text here
</a></button>




Html

Related
favicon specification Code Example favicon specification Code Example
how to set a fav icon Code Example how to set a fav icon Code Example
how to choose your html website favicon Code Example how to choose your html website favicon Code Example
Meta Tag Generato - SEO Code Example Meta Tag Generato - SEO Code Example
full height div inside td Code Example full height div inside td Code Example

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