href to a button code example

Example 1: href on a button

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

Example 2: html button link

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

Example 3: href in button

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

Example 4: button with href

onClick={() => {window.location.href="https://www.golfballs.com/"}}

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

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

Tags:

Html Example