herf link in button code example
Example 1: html links
<a href="url">link text</a>
Example 2: href on a button
<button onclick="window.location.href='/page2'">Continue</button>
Example 3: html button with link
<a href="https://www.google.com">
<button>Go to Google</button>
</a>
Example 4: href in button
<input type="button" onclick="location.href='https://google.com';" value="Go to Google" />
Example 5: link in html
<a href="./Your/link/to/the/page">Your text</a>