Answers for "how to add link in button"

6

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>
Posted by: Guest on June-17-2021
29

html button link

<button><a href='https://google.com' alt='Broken Link'>This is a button</a></button>
Posted by: Guest on February-02-2020
1

html button click url

# Wrap whole button in a 'a' tag.
 <a href="https://google.com" class="button"><button class="pixel">Button text</button></a>
Posted by: Guest on October-25-2020
1

href in button

<input type="button" onclick="location.href='https://google.com';" value="Go to Google" />
Posted by: Guest on December-27-2020
0

button href

<a href="https://google.com" class="button">Go to Google</a> //*button link *//
Posted by: Guest on June-25-2020
2

html button with href

<form method="get" action="/page2">
    <button type="submit">Continue</button>
</form>
Posted by: Guest on June-03-2020

Code answers related to "how to add link in button"

Browse Popular Code Answers by Language