link button in javascript w3school code example
Example 1: javascript button
<button onclick="Function()">Text</button>
Example 2: html button with link
<form action="https://google.com">
<input type="submit" value="Go to Google" />
</form>
<button onclick="Function()">Text</button>
<form action="https://google.com">
<input type="submit" value="Go to Google" />
</form>