how to link button to another page in html code example

Example 1: html button link

<button><a href='https://google.com' alt='Broken Link'>This is a button</a></button>

Example 2: how to add button to open a website using html

<button onclick="window.open('http://www.example.com')">
</button>

Example 3: button html link to another page

<input type="button" onclick="location.href='https://google.com';" value="Go to Google" />

Example 4: html button with link

<form action="https://google.com">
    <input type="submit" value="Go to Google" />
</form>

Example 5: how to link a button to another page in css

<button onclick="window.location.href='/page2'">Continue</button>

Example 6: How to create an HTML button that acts like a link?

<button onclick="window.location.href='test.html'">Continue</button>