Answers for "how to link a button to another web page"

1

how to add button to open a website using html

<button onclick="window.open('http://www.example.com')">
</button>
Posted by: Guest on February-24-2021
0

how to link a button to another page in css

<button onclick="window.location.href='/page2'">Continue</button>
Posted by: Guest on April-28-2021
-1

button html link to another page

a.button {
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;

    text-decoration: none;
    color: initial;
}
Posted by: Guest on April-02-2021

Code answers related to "how to link a button to another web page"

Browse Popular Code Answers by Language