how to link a button to another page in html code example
Example 1: add link behind a button in html
<!DOCTYPE html>
<html>
<head>
<title>Title of the document</title>
</head>
<body>
<form>
<input type="button" onclick="window.location.href = 'https://www.w3docs.com';" value="w3docs"/>
</form>
</body>
</html>
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: button html link to another page
<a href="https://google.com" class="button">Go to Google</a>
Example 5: html button with link
<form action="https://google.com">
<input type="submit" value="Go to Google" />
</form>
Example 6: button html link to another page
<form action="https://google.com">
<input type="submit" value="Go to Google" />
</form>